base_qualityStencil_Execute.cs 1.72 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    public partial class base_qualityStencil_Execute
    {
        /// <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 projectKey { get; set; }

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

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

        [SugarColumn(IsNullable = true)]
        public int isExecute { get; set; }

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

        [SugarColumn(IsNullable = true)]
        public int executeResult { get; set; }

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

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

        [SugarColumn(IsNullable = true)]
        public int handleResult { get; set; }

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

        [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; }

    }
}