BaseWorkOrderBends.cs 2.67 KB
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;

namespace HHECS.Model.Entities
{
    [Serializable]
    [Table("base_work_order_bends")]
    public partial class BaseWorkOrderBends : BaseEntityCU<int>
    {
        /// <summary>
        /// 船号
        /// </summary>
        [Column("shipNo")]
        public string shipNo { get; set; }
        /// <summary>
	    /// 首弯转角
	    /// </summary>
        [Column("cornerOne")]
        public string cornerOne { get; set; }
        /// <summary>
        /// 转角
        /// </summary>
        [Column("mountingCorner")]
        public string mountingCorner { get; set; }
        /// <summary>
        /// 弯角
        /// </summary>
        [Column("curve")]
        public string curve { get; set; }

        /// <summary>
        /// 产品头
        /// </summary>
        [Column("headKeys")]
        public string headKeys { get; set; }

        /// <summary>
        /// 工件编号
        /// </summary>
        [Column("workPieceNo")]
        public string workPieceNo { get; set; }

        /// <summary>
        /// 管件号
        /// </summary>
        [Column("pipePartsNo")]
        public string pipePartsNo { get; set; }

        /// <summary>
        /// 壁厚
        /// </summary>
        [Column("thickness")]
        public string thickness { get; set; }
        /// <summary>
        /// 材质
        /// </summary>
        [Column("material")]
        public string material { get; set; }
        /// <summary>
        /// 管材外径
        /// </summary>
        [Column("externalDiameter")]
        public string externalDiameter { get; set; }
        /// <summary>
        /// 弯管半径
        /// </summary>
        [Column("radius")]
        public string radius { get; set; }
        /// <summary>
        /// 下料长度
        /// </summary>
        [Column("length")]
        public string length { get; set; }
        /// <summary>
        /// 直段
        /// </summary>
        [Column("straightSegment")]

        public string straightSegment { get; set; }
        /// <summary>
        /// 1端扣减量
        /// </summary>
        [Column("deduction1")]
        public string deduction1 { get; set; }
        /// <summary>
        /// 2端扣减量
        /// </summary>
        [Column("deduction2")]
        public string deduction2 { get; set; }
        /// <summary>
        /// 1端附件
        /// </summary>
        [Column("file1")]

        public string file1 { get; set; }
        /// <summary>
        /// 2端附件
        /// </summary>
        [Column("file2")]

        public string file2 { get; set; }
    }
}