base_procedure_problem.cs 3.23 KB
using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations.Schema;

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

        /// <summary>
        /// 管段码
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "管段码", IsNullable = true)]
        public string barCode { get; set; }

        /// <summary>
        /// 问题原因
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "问题原因", IsNullable = true)]
        public string problem { get; set; }

        /// <summary>
        /// 工序Code
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "工序Code", IsNullable = true)]
        public string oprSequenceCode { get; set; }

        [SugarColumn(IsNullable = true)]
        public DateTime createTime { get; set; }

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

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

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

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

        /// <summary>
        /// 物料码
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "物料码", IsNullable = true)]
        public string materialCode { get; set; }

        /// <summary>
        /// 工序名称
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "工序名称", IsNullable = true)]
        public string oprSequenceName { get; set; }

        /// <summary>
        /// 管段长度
        /// </summary>
        [SugarColumn(ColumnDescription = "管段长度", IsNullable = true)]
        public decimal cuttingLength { get; set; }

        /// <summary>
        /// 物料名称
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "物料名称", IsNullable = true)]
        public string materialName { get; set; }

        /// <summary>
        /// 材质
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "材质", IsNullable = true)]
        public string types { get; set; }

        /// <summary>
        /// 壁厚
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "壁厚", IsNullable = true)]
        public string thickness { get; set; }

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

        /// <summary>
        /// 规格
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "规格", IsNullable = true)]
        public string specifications { get; set; }

        /// <summary>
        /// 图纸URL
        /// </summary>
        [SugarColumn(ColumnDescription = "图纸URL", IsNullable = true)]
        public string designUrl { get; set; }


    }
}