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