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-06-21 18:39 /// 描 述:质量目标管理体系指标模块 /// public class FillinFromEntity { #region 实体成员 /// /// 主键 /// [Column("ID")] public string Id { get; set; } /// /// 工作模块 /// [Column("WORDERMODULE")] public string WorderModule { get; set; } /// /// 序号 /// [Column("SERIALNO")] public string SerialNo { get; set; } /// /// 项目名称 /// [Column("PROJECTNAME")] public string ProjectName { get; set; } /// /// 数1 /// [Column("FORMULA")] public string Formula { get; set; } /// /// 结果 /// [Column("LASTRESULT")] public string LastResult { get; set; } /// /// 填报周期 /// [Column("FILLINGCYCLE")] public string FillingCycle { get; set; } /// /// 填报时间 /// [Column("FILLINGTIME")] public string FillingTime { get; set; } /// /// 填报部门 /// [Column("FILLINGDEPT")] public string FillingDept { get; set; } /// /// 填报人 /// [Column("FILLINGPEOPLE")] public string FillingPeople { get; set; } /// /// 提交人 /// [Column("LRPEOPLE")] public string lrPeople { get; set; } /// /// 录入时间 /// [Column("LRTIME")] public DateTime? lrTime { get; set; } /// /// 状态 0:草稿 1待指派部门 2待填写公式 3 已完成 /// [Column("STATE")] public int? State { get; set; } /// /// Demo /// [Column("DEMO")] public string Demo { get; set; } /// /// 隐藏/显示 /// [Column("ISFLAG")] public int? IsFlag { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.Id = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.Id = keyValue; } #endregion #region 扩展字段 /// /// 填报时间 /// [NotMapped] public string FillingTime1 { get; set; } /// /// 填报时间 /// [NotMapped] public string FillingTime2 { get; set; } #endregion } }