bus_workOrder_detail_sequence.cs 3.16 KB
using SqlSugar;
using System;

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

        /// <summary>
        /// 本身的Key
        /// </summary>
        [SugarColumn(ColumnDescription = "本身的Key", IsNullable = true)]
        public Guid bodyKeys { get; set; }

        /// <summary>
        /// 工单头Key
        /// </summary>
        [SugarColumn(ColumnDescription = "工单头Key", IsNullable = true)]
        public Guid headKeys { get; set; }

        /// <summary>
        /// 工单明细的Key
        /// </summary>
        [SugarColumn(ColumnDescription = "工单明细的Key", IsNullable = true)]
        public Guid detailKeys { get; set; }

        /// <summary>
        /// 工单号
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "工单号", IsNullable = true)]
        public string workOrderCode { get; set; }

        /// <summary>
        /// 工单流水号   传给plc的唯一工件任务号
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "工单流水号   传给plc的唯一工件任务号", IsNullable = true)]
        public string workOrderSequence { get; set; }

        /// <summary>
        /// 线体Code
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "线体Code", IsNullable = true)]
        public string lineCode { get; set; }

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

        /// <summary>
        /// 设备Code
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "设备Code", IsNullable = true)]
        public string equipmentCode { get; set; }

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

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

        /// <summary>
        /// 建立者
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "建立者", IsNullable = true)]
        public string createBy { get; set; }

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

        /// <summary>
        /// 更新者
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "更新者", IsNullable = true)]
        public string updateBy { get; set; }

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

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

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