|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using Learun.Util;
- using System;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace Learun.Application.TwoDevelopment.PersonnelManagement
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创 建:超级管理员
- /// 日 期:2020-02-28 16:07
- /// 描 述:党员奖励管理
- /// </summary>
- public class PartyMemberEncouragementEntity
- {
- #region 实体成员
- /// <summary>
- /// Id
- /// </summary>
- [Column("ID")]
- public string Id { get; set; }
- /// <summary>
- /// 党员
- /// </summary>
- [Column("PARTYMEMBER")]
- public string PartyMember { get; set; }
- /// <summary>
- /// 奖励类型
- /// </summary>
- [Column("ENCOURAGEMENTTYPE")]
- public string EncouragementType { get; set; }
- /// <summary>
- /// 奖励级别
- /// </summary>
- [Column("ENCOURAGEMENTDEGREE")]
- public string EncouragementDegree { get; set; }
- /// <summary>
- /// 奖励等级
- /// </summary>
- [Column("ENCOURAGEMENTLEVEL")]
- public string EncouragementLevel { get; set; }
- /// <summary>
- /// 奖励内容
- /// </summary>
- [Column("CONTENT")]
- public string Content { get; set; }
- /// <summary>
- /// 奖励金额
- /// </summary>
- [Column("FEES")]
- public decimal? Fees { get; set; }
- /// <summary>
- /// 奖励时间
- /// </summary>
- [Column("TIME")]
- public DateTime? Time { get; set; }
- /// <summary>
- /// 奖励原因
- /// </summary>
- [Column("REASON")]
- public string Reason { get; set; }
- #endregion
-
- #region 扩展操作
- /// <summary>
- /// 新增调用
- /// </summary>
- public void Create()
- {
- this.Id = Guid.NewGuid().ToString();
- }
- /// <summary>
- /// 编辑调用
- /// </summary>
- /// <param name="keyValue"></param>
- public void Modify(string keyValue)
- {
- this.Id = keyValue;
- }
- #endregion
- #region 扩展字段
- #endregion
- }
- }
-
|