base_productionOrder_EP3D.cs 2.72 KB
using System;
using System.Collections.Generic;
using SqlSugar;

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

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

        [SugarColumn(Length = 400, ColumnDescription = "管线号", IsNullable = true)]
        public string pipelineNo { get; set; }

        [SugarColumn(Length = 400, ColumnDescription = "焊点编号1", IsNullable = true)]
        public string weldingPointNo1 { get; set; }

        [SugarColumn(Length = 400, ColumnDescription = "焊接材料1", IsNullable = true)]
        public string weldingMaterial1 { get; set; }

        [SugarColumn(Length = 400, ColumnDescription = "焊点编号2", IsNullable = true)]
        public string weldingPointNo2 { get; set; }

        [SugarColumn(Length = 400, ColumnDescription = "焊接材料2", IsNullable = true)]
        public string weldingMaterial2 { get; set; }

        [SugarColumn(Length = 400, ColumnDescription = "页码", IsNullable = true)]
        public string pagination { get; set; }

        [SugarColumn(Length = 400, ColumnDescription = "管段编号", IsNullable = true)]
        public string pipeSectionNo { get; set; }

        [SugarColumn(Length = 400, ColumnDescription = "管路等级", IsNullable = true)]
        public string pipelineGrade { get; set; }

        [SugarColumn(ColumnDescription = "管段长度", IsNullable = true)]
        public decimal pipeLength { get; set; }

        [SugarColumn(Length = 400, ColumnDescription = "管段材料码", IsNullable = true)]
        public string pipeMaterialCode { get; set; }

        [SugarColumn(ColumnDescription = "管段数量", IsNullable = true)]
        public int pipeNumber { get; set; }

        [SugarColumn(ColumnDescription = "状态,0未使用,10已关联,20已排版,30作废", 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; }

        [SugarColumn(Length = 400, ColumnDescription = "导入批次", IsNullable = true)]
        public string batchNo { get; set; }
    }

    public partial class productionOrderList
    {
        public List<base_productionOrder_EP3D> details { get; set; }
    }

}