base_work_order_mounting.cs 5.18 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("base_work_order_mounting")]
    public partial class base_work_order_mounting : 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 = false)]
        public string projectNo { get; set; }

        /// <summary>
        /// 管件号
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "管件号", IsNullable = false)]
        public string pipePartsNo { get; set; }

        /// <summary>
        /// 组立信息
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "组立信息", IsNullable = true)]
        public string assemblageInfo { get; set; }

        /// <summary>
        /// 系列
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "系列", IsNullable = true)]
        public string range { get; set; }

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

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

        /// <summary>
        /// 等级
        /// </summary>
        [SugarColumn(Length = 10, ColumnDescription = "等级", IsNullable = true)]
        public string level { get; set; }

        /// <summary>
        /// 流向1 
        /// </summary>
        [SugarColumn(Length = 10, ColumnDescription = "流向1 ", IsNullable = true)]
        public string flowOrientation1 { get; set; }

        /// <summary>
        /// 流向2  
        /// </summary>
        [SugarColumn(Length = 10, ColumnDescription = "流向2  ", IsNullable = true)]
        public string flowOrientation2 { get; set; }

        /// <summary>
        /// 组件1
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "组件1", IsNullable = true)]
        public string assembly1 { get; set; }

        /// <summary>
        /// 组件2
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "组件2", IsNullable = true)]
        public string assembly2 { get; set; }

        /// <summary>
        /// 组件3
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "组件3", IsNullable = true)]
        public string assembly3 { 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>
        /// 操作人员
        /// </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 = true)]
        public string updateby { get; set; }

        /// <summary>
        /// 主表关联字段
        /// </summary>
        [SugarColumn(ColumnDescription = "主表关联字段", IsNullable = true)]
        public Guid headKeys { get; set; }

    }
}