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 力软信息技术(苏州)有限公司 /// 创 建:超级管理员 /// 日 期:2022-03-09 15:33 /// 描 述:学生证打印 /// </summary> public class StuCardInfoEntity { #region 实体成员 /// <summary> /// ID /// </summary> [Column("ID")] public string ID { get; set; } /// <summary> /// StuNo /// </summary> [Column("STUNO")] public string StuNo { get; set; } /// <summary> /// StuName /// </summary> [Column("STUNAME")] public string StuName { get; set; } /// <summary> /// Gender /// </summary> [Column("GENDER")] public bool? Gender { get; set; } /// <summary> /// Birthday /// </summary> [Column("BIRTHDAY")] public string Birthday { get; set; } /// <summary> /// DeptNo /// </summary> [Column("DEPTNO")] public string DeptNo { get; set; } /// <summary> /// Major /// </summary> [Column("MAJOR")] public string Major { get; set; } /// <summary> /// ClassNo /// </summary> [Column("CLASSNO")] public string ClassNo { get; set; } /// <summary> /// OpeningDate /// </summary> [Column("OPENINGDATE")] public DateTime? OpeningDate { get; set; } /// <summary> /// ExpiryDate /// </summary> [Column("EXPIRYDATE")] public DateTime? ExpiryDate { get; set; } /// <summary> /// CreateTime /// </summary> [Column("CREATETIME")] public DateTime? CreateTime { get; set; } /// <summary> /// CreateUserId /// </summary> [Column("CREATEUSERID")] public string CreateUserId { get; set; } /// <summary> /// Destination /// </summary> [Column("DESTINATION")] public string Destination { get; set; } /// <summary> /// Remark /// </summary> [Column("REMARK")] public string Remark { get; set; } /// <summary> /// Status /// </summary> [Column("STATUS")] public int? Status { 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 } }