using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架 /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司 /// 创 建:超级管理员 /// 日 期:2021-10-11 16:46 /// 描 述:助学金及审核 /// public class ScholarshipxjEntity { #region 实体成员 /// /// 主键 /// [Column("ID")] public string Id { get; set; } /// /// 姓名 /// [Column("STUNAME")] public string StuName { get; set; } /// /// 学号 /// [Column("STUNO")] public string StuNo { get; set; } /// /// 班级 /// [Column("CLASSNO")] public string ClassNo { get; set; } /// /// SchoolType /// [Column("SCHOOLTYPE")] public string SchoolType { get; set; } /// /// 获得时间 /申请时间 /// [Column("GETTIME")] public DateTime? GetTime { get; set; } /// /// 0奖学金 1助学金 /// [Column("ISTYPE")] public string IsType { get; set; } /// /// 状态 0待审核 1 通过 2 不通过 /// [Column("STATE")] public string State { get; set; } /// /// 审核人 /// [Column("AUDITPEOPLE")] public string AuditPeople { get; set; } /// /// 审核时间 /// [Column("AUDITTIME")] public DateTime? AuditTime { get; set; } /// /// 录入人 /// [Column("LRPEOPLE")] public string LrPeople { get; set; } /// /// 录入时间 /// [Column("LRTIME")] public DateTime? LrTime { get; set; } /// /// 附件 /// [Column("ATTACHMENTNAME")] public string AttachmentName { get; set; } /// /// 备注 /// [Column("REMARK")] public string Remark { get; set; } /// /// 不同意原因 /// [Column("DEMO")] public string Demo { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.Id = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.Id = keyValue; } #endregion #region 扩展字段 #endregion } }