bus_implementation_requirements.cs 1.58 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("bus_implementation_requirements")]
    public partial class bus_implementation_requirements : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int iD { get; set; }
 
        /// <summary>
        /// 贯彻要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "贯彻要求", IsNullable = true)]
        public string requirement { get; set; }
 
        /// <summary>
        /// 要求描述
        /// </summary>
        [SugarColumn(Length = 1000, ColumnDescription = "要求描述", IsNullable = true)]
        public string description { get; set; }
 
        /// <summary>
        /// 责任部门
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "责任部门", IsNullable = true)]
        public string responsibleDepartment { get; set; }
 
        /// <summary>
        /// 责任人
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "责任人", IsNullable = true)]
        public string responsiblePerson { get; set; }
 
        /// <summary>
        /// 贯彻日期
        /// </summary>
        [SugarColumn(ColumnDescription = "贯彻日期", IsNullable = true)]
        public DateTime implementationDate { get; set; }
 
        /// <summary>
        /// 状态
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "状态", IsNullable = true)]
        public string status { get; set; }
 
     }
}