base_qualityStencil_detail.cs 1.34 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("base_qualityStencil_detail")]
    public partial class base_qualityStencil_detail : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        [SugarColumn(IsNullable = true)]
        public Guid keys { get; set; }


        [SugarColumn(IsNullable = true)]
        public Guid headKey { get; set; }

        /// <summary>
        /// 质检要求
        /// </summary>
        [SugarColumn(Length = 400, IsNullable = true)]
        public string describe { get; set; }

        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(Length = 400, IsNullable = true)]
        public string remark { get; set; }

        /// <summary>
        /// 状态
        /// </summary>
        [SugarColumn(IsNullable = true)]
        public int state { get; set; }

        [SugarColumn(IsNullable = true)]
        public DateTime createTime { get; set; }

        [SugarColumn(IsNullable = true)]
        public DateTime updateTime { get; set; }

        [SugarColumn(Length = 400, IsNullable = true)]
        public string temp1 { get; set; }

        [SugarColumn(Length = 400, IsNullable = true)]
        public string temp2 { get; set; }

    }
}