base_work_order_bends.cs 4.57 KB
using System;
using SqlSugar;

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

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

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

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

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

        /// <summary>
        /// 弯角
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "弯角", IsNullable = true)]
        public string curve { 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 = false)]
        public string updateBy { get; set; }

        [SugarColumn(IsNullable = true)]
        public Guid headKeys { 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 pipePartsNo { 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 material { get; set; }

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

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

        /// <summary>
        /// 下料长度
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "下料长度", IsNullable = true)]
        public string length { get; set; }

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

        /// <summary>
        /// 1端扣减量
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "1端扣减量", IsNullable = true)]
        public string deduction1 { get; set; }

        /// <summary>
        /// 2端扣减量
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "2端扣减量", IsNullable = true)]
        public string deduction2 { get; set; }

        /// <summary>
        /// 1端附件
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "1端附件", IsNullable = true)]
        public string file1 { get; set; }

        /// <summary>
        /// 2端附件
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "2端附件", IsNullable = true)]
        public string file2 { get; set; }

    }
}