bus_cutplan_detail.cs 4.59 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("bus_cutplan_detail")]
    public partial class bus_cutplan_detail
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }
 
        /// <summary>
        /// headkey
        /// </summary>
        [SugarColumn(ColumnDescription = "headkey", IsNullable = true)]
        public Guid headKeys { get; set; }
 
        /// <summary>
        /// 工单号
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "工单号", IsNullable = true)]
        public string iwpNo { get; set; }
 
        /// <summary>
        /// 追踪码
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "追踪码", IsNullable = true)]
        public string barCode { get; set; }
 
        /// <summary>
        /// 切割长度
        /// </summary>
        [SugarColumn(ColumnDescription = "切割长度", IsNullable = true)]
        public decimal cuttingLength { get; set; }
 
        /// <summary>
        /// 切割余量
        /// </summary>
        [SugarColumn(ColumnDescription = "切割余量", IsNullable = true)]
        public decimal cutFlanConfig { get; set; }
 
        /// <summary>
        /// 状态(0:初始,10:激光打标,20:开始切割,30:切割完成)
        /// </summary>
        [SugarColumn(ColumnDescription = "状态(0:初始,10:激光打标,20:开始切割,30:切割完成)", IsNullable = true)]
        public int cutState { get; set; }
 
        /// <summary>
        /// 切割开始时间
        /// </summary>
        [SugarColumn(ColumnDescription = "切割开始时间", IsNullable = true)]
        public string cutStartTime { get; set; }
 
        /// <summary>
        /// 切割完成时间
        /// </summary>
        [SugarColumn(ColumnDescription = "切割完成时间", IsNullable = true)]
        public string cutEndTime { get; set; }
 
        /// <summary>
        /// 切割优先级
        /// </summary>
        [SugarColumn(ColumnDescription = "切割优先级", IsNullable = true)]
        public int cutLevel { get; set; }
 
        /// <summary>
        /// 预留字段1
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "预留字段1", IsNullable = true)]
        public string extend1 { get; set; }
 
        /// <summary>
        /// 预留字段2
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "预留字段2", IsNullable = true)]
        public string extend2 { get; set; }
 
        /// <summary>
        /// 预留字段3
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "预留字段3", IsNullable = true)]
        public string extend3 { get; set; }
 
        /// <summary>
        /// 预留字段4
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "预留字段4", IsNullable = true)]
        public string extend4 { get; set; }
 
        /// <summary>
        /// createTime
        /// </summary>
        [SugarColumn(ColumnDescription = "createTime", IsNullable = true)]
        public DateTime createTime { get; set; }
 
        /// <summary>
        /// createBy
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "createBy", IsNullable = true)]
        public string createBy { get; set; }
 
        /// <summary>
        /// updateTime
        /// </summary>
        [SugarColumn(ColumnDescription = "updateTime", IsNullable = true)]
        public string updateTime { get; set; }
 
        /// <summary>
        /// updateBy
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "updateBy", IsNullable = true)]
        public string updateBy { get; set; }
 
        /// <summary>
        /// 是否成品管 0:否 1:是
        /// </summary>
        [SugarColumn(ColumnDescription = "是否成品管 0:否 1:是", IsNullable = true)]
        public int isendproduct { get; set; }
 
        /// <summary>
        /// 工单头表key
        /// </summary>
        [SugarColumn(ColumnDescription = "工单头表key", IsNullable = true)]
        public Guid workOrderHeadKeys { get; set; }
 
        /// <summary>
        /// 工单明细key
        /// </summary>
        [SugarColumn(ColumnDescription = "工单明细key", IsNullable = true)]
        public Guid workOrderDetailKeys { get; set; }
 
        /// <summary>
        /// key
        /// </summary>
        [SugarColumn(ColumnDescription = "key", IsNullable = true)]
        public Guid bodyKeys { get; set; }
 
     }
}