base_productionOrder_EP3D.cs 2.02 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, IsNullable = true)]
        public string pipelineNo { get; set; }

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

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

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

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

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

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

        [SugarColumn(IsNullable = true)]
        public decimal pipeLength { get; set; }

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

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

        [SugarColumn(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; }

    }

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

}