bus_cutplan_printstation.cs 2.41 KB
using System;
using SqlSugar;

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

        /// <summary>
        /// 工单code 生产订单号
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "工单code 生产订单号", IsNullable = false)]
        public string workOrderCode { get; set; }

        /// <summary>
        /// 产线 小经:line1 中1:line2 中2:line3 大经:line4
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "产线 小经:line1 中1:line2 中2:line3 大经:line4", IsNullable = false)]
        public string lineCode { get; set; }

        /// <summary>
        /// 工件编码
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "工件编码", IsNullable = false)]
        public string workPieceNo { get; set; }

        /// <summary>
        /// 工位
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "工位", IsNullable = true)]
        public string stationCode { get; set; }

        /// <summary>
        /// 打码内容
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "打码内容", IsNullable = true)]
        public string printCode { get; set; }

        /// <summary>
        /// 操作人员
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "操作人员", IsNullable = false)]
        public string createBy { get; set; }

        /// <summary>
        /// 操作时间
        /// </summary>
        [SugarColumn(ColumnDescription = "操作时间", IsNullable = false)]
        public DateTime createTime { get; set; }

        /// <summary>
        /// 更新时间
        /// </summary>
        [SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
        public DateTime updateTime { get; set; }

        /// <summary>
        /// 更新人员
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "更新人员", IsNullable = false)]
        public string updateby { get; set; }

        public DateTime cutStartTime { get; set; }

        public DateTime cutEndTime { get; set; }

        public string batchNo { get; set; }

        public int cutLevel { get; set; }

    }
}