BaseWeldTechnologyEquipment.cs 1.84 KB
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;

namespace HHECS.Model.Entities
{
    /// <summary>
    /// 焊接工艺参数设备下发
    /// </summary>
    [Table("base_weld_technology_equipment")]
    public class BaseWeldTechnologyEquipment : BaseEntityCU<int>
    {
        /// <summary>
        /// 焊接工艺id
        /// </summary>
        public int technologyHeadId { get; set; }


        /// <summary>
        /// 设备编码
        /// </summary>
        public string equipmentCode { get; set; }

        /// <summary>
        /// 最小管径
        /// </summary>
        public decimal minDiameter { get; set; }

        /// <summary>
        /// 最小壁厚
        /// </summary>
        public decimal minThickness { get; set; }

        /// <summary>
        /// 材质
        /// </summary>
        public string material { get; set; }

        /// <summary>
        /// 最小焊缝
        /// </summary>
        public int minWeldingSeam { get; set; }
        /// <summary>
        /// 任务号
        /// </summary>
        public string taskNo { get; set; }
        /// <summary>
        /// 任务号
        /// </summary>
        public string pipeLength { get; set; }

        /// <summary>
        /// 下发状态
        /// </summary>
        public int sendStatus { get; set; }

        
        /// <summary>
        /// createTime
        /// </summary>
        public DateTime? createTime { get; set; }

        /// <summary>
        /// createBy
        /// </summary>
        public string createBy { get; set; }

        /// <summary>
        /// updateTime
        /// </summary>
        public DateTime? updateTime { get; set; }

        /// <summary>
        /// updateBy
        /// </summary>
        public string updateBy { get; set; }

    }
}