using System; using SqlSugar; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Admin.Core.Model { /// ///项目汇报实体类 /// [Table("EProjectReport")] [SugarTable( "EProjectReport", "admin_sqlite")] public class EProjectReport { /// /// 主键 /// [Key] [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] [Required] public int ID { get; set; } /// /// 项目ID /// public int? ProjectID { get; set; } /// /// 项目计划ID /// public int? PlanID { get; set; } /// /// 汇报人ID /// public int? Reporter { get; set; } /// /// 汇报人部门ID /// public int? DeptID { get; set; } /// /// 汇报标题 /// public string Title { get; set; } /// /// 汇报内容 /// public string RContent { get; set; } /// /// 汇报图片 /// public string Image { get; set; } /// /// 汇报视频 /// public string Video { get; set; } /// /// 项目进度 /// public int? Progress { get; set; } /// /// 立项 /// public string Establish { get; set; } /// /// 环评 /// public string Eia { get; set; } /// /// 土地 /// public string Land { get; set; } /// /// 安评 /// public string Safety { get; set; } /// /// 能保 /// public string Guarantee { get; set; } /// /// 水保 /// public string Water { get; set; } /// /// 用地规划 /// public string LandPlan { get; set; } /// /// 工程规划 /// public string EnginePlan { get; set; } /// /// 施工许可 /// public string Permit { get; set; } /// /// 消防 /// public string Fire { get; set; } /// /// 批示人 /// public int? Replyer { get; set; } /// /// 领导批示内容 /// public string Reply { get; set; } /// /// 状态 /// public string Status { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 创建者 /// public string CreateBy { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 更新者 /// public string UpdateBy { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 删除标志(0代表存在 1代表删除) /// public bool? DelFlag { get; set; } } }