using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.PersonnelManagement { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2020-03-04 16:17 /// 描 述:奖学金管理 /// public class ScholarshipManagementEntity { #region 实体成员 /// /// 主键 /// [Column("ID")] public string Id { get; set; } /// /// 奖学金类型 /// [Column("SCHOLARSHIPTYPE")] public string ScholarshipType { get; set; } /// /// 奖学金等级 /// [Column("SCHOLARSHIPDEGREE")] public string ScholarshipDegree { get; set; } /// /// 金额 /// [Column("MONEY")] public decimal? Money { get; set; } /// /// 人数 /// [Column("COUNT")] public int? Count { get; set; } /// /// 评选条件 /// [Column("CONDITION")] public string Condition { get; set; } /// /// 备注 /// [Column("REMARK")] public string Remark { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.Id = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.Id = keyValue; } #endregion #region 扩展字段 #endregion } }