base_work_order_flameCut.cs 5.33 KB
using System;
using System.Collections.Generic;
using SqlSugar;

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

        /// <summary>
        /// 条形码
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "条形码", IsNullable = false)]
        public string barcode { get; set; }

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

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

        /// <summary>
        /// 搭接角度
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "搭接角度", IsNullable = true)]
        public string end1_angle { get; set; }

        /// <summary>
        /// 偏心距
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "偏心距", IsNullable = true)]
        public string end1_centeroffest { get; set; }

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

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

        /// <summary>
        /// 坡口类型
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "坡口类型", IsNullable = true)]
        public string end1_Type { get; set; }

        /// <summary>
        /// 母管外径2
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "母管外径2", IsNullable = true)]
        public string end2_D { get; set; }

        /// <summary>
        /// 搭接角度2
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "搭接角度2", IsNullable = true)]
        public string end2_angle { get; set; }

        /// <summary>
        /// 偏心距2
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "偏心距2", IsNullable = true)]
        public string end2_centeroffest { get; set; }

        /// <summary>
        /// 转角2
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "转角2", IsNullable = true)]
        public string end2_twist { get; set; }

        /// <summary>
        /// 坡口2
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "坡口2", IsNullable = true)]
        public string end2_beveAngle { get; set; }

        /// <summary>
        /// 坡口类型2
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "坡口类型2", IsNullable = true)]
        public string end2_Type { get; set; }

        /// <summary>
        /// 材质
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "材质", IsNullable = true)]
        public string material { 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 = 50, ColumnDescription = "中心距", IsNullable = true)]
        public string lenth { 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; }

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

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

        /// <summary>
        /// 切割类型
        /// </summary>
        [SugarColumn(Length = 10, ColumnDescription = "切割类型", IsNullable = true)]
        public string cut_Type { get; set; }


    }

    public class Work_Order_FlameCut : base_work_order_flameCut
    {
        /// <summary>
        /// 开孔信息
        /// </summary>
        public List<base_work_order_flameCut_d> Cut_D { get; set; }
    }
     
}