using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2020-08-12 14:37 /// 描 述:校服补订管理 /// public class StuInfoFreshSusEntity { #region 实体成员 /// /// 编号 /// [Column("ID")] public string ID { get; set; } /// /// 学生 /// [Column("STUID")] public string StuID { get; set; } /// /// 身高体重 /// [Column("HIGHWEIGHT")] public string HighWeight { get; set; } /// /// 校服尺寸 /// [Column("CSIZE")] public string CSize { get; set; } /// /// 是否领取 /// [Column("ISGET")] public string IsGet { get; set; } /// /// 是否缴费 /// [Column("ISPAY")] public string IsPay { get; set; } /// /// 申请时间 /// [Column("APPLYTIME")] public string ApplyTime { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.ID = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.ID = keyValue; } #endregion #region 扩展字段 #endregion } }