You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ScholarshipTranEntity.cs 3.2 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. using Learun.Util;
  2. using System;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace Learun.Application.TwoDevelopment.EducationalAdministration
  5. {
  6. /// <summary>
  7. /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
  8. /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
  9. /// 创 建:超级管理员
  10. /// 日 期:2021-09-27 10:33
  11. /// 描 述:学金类型
  12. /// </summary>
  13. public class ScholarshipTranEntity
  14. {
  15. #region 实体成员
  16. /// <summary>
  17. /// 主键
  18. /// </summary>
  19. [Column("ID")]
  20. public string Id { get; set; }
  21. /// <summary>
  22. /// 姓名
  23. /// </summary>
  24. [Column("STUNAME")]
  25. public string StuName { get; set; }
  26. /// <summary>
  27. /// 学号
  28. /// </summary>
  29. [Column("STUNO")]
  30. public string StuNo { get; set; }
  31. /// <summary>
  32. /// 班级
  33. /// </summary>
  34. [Column("CLASSNO")]
  35. public string ClassNo { get; set; }
  36. /// <summary>
  37. /// SchoolType
  38. /// </summary>
  39. [Column("SCHOOLTYPE")]
  40. public string SchoolType { get; set; }
  41. /// <summary>
  42. /// 获得时间 /申请时间
  43. /// </summary>
  44. [Column("GETTIME")]
  45. public DateTime? GetTime { get; set; }
  46. /// <summary>
  47. /// 0奖学金 1助学金
  48. /// </summary>
  49. [Column("ISTYPE")]
  50. public string IsType { get; set; }
  51. /// <summary>
  52. /// 状态 0待审核 1 通过 2 不通过
  53. /// </summary>
  54. [Column("STATE")]
  55. public string State { get; set; }
  56. /// <summary>
  57. /// 审核人
  58. /// </summary>
  59. [Column("AUDITPEOPLE")]
  60. public string AuditPeople { get; set; }
  61. /// <summary>
  62. /// 审核时间
  63. /// </summary>
  64. [Column("AUDITTIME")]
  65. public DateTime? AuditTime { get; set; }
  66. /// <summary>
  67. /// 录入人
  68. /// </summary>
  69. [Column("LRPEOPLE")]
  70. public string LrPeople { get; set; }
  71. /// <summary>
  72. /// 录入时间
  73. /// </summary>
  74. [Column("LRTIME")]
  75. public DateTime? LrTime { get; set; }
  76. /// <summary>
  77. /// 附件
  78. /// </summary>
  79. [Column("ATTACHMENTNAME")]
  80. public string AttachmentName { get; set; }
  81. /// <summary>
  82. /// 备注
  83. /// </summary>
  84. [Column("REMARK")]
  85. public string Remark { get; set; }
  86. /// <summary>
  87. /// 不同意原因
  88. /// </summary>
  89. [Column("DEMO")]
  90. public string Demo { get; set; }
  91. #endregion
  92. #region 扩展操作
  93. /// <summary>
  94. /// 新增调用
  95. /// </summary>
  96. public void Create()
  97. {
  98. this.Id = Guid.NewGuid().ToString();
  99. }
  100. /// <summary>
  101. /// 编辑调用
  102. /// </summary>
  103. /// <param name="keyValue"></param>
  104. public void Modify(string keyValue)
  105. {
  106. this.Id = keyValue;
  107. }
  108. #endregion
  109. #region 扩展字段
  110. [NotMapped]
  111. public string IdentityCardNo { get; set; }
  112. #endregion
  113. }
  114. }