base_technical_tequirements.cs 3.53 KB
using System;
using SqlSugar;
using Hh.Mes.POJO.EnumEntitys;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("base_technical_tequirements")]
    public partial class base_technical_tequirements : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int iD { get; set; }
 
        /// <summary>
        /// 产品名称
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "产品名称", IsNullable = false)]
        public string productName { get; set; }
 
        /// <summary>
        /// 规格尺寸
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "规格尺寸", IsNullable = true)]
        public string specificationsAndDimensions { get; set; }
 
        /// <summary>
        /// 材料
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "材料", IsNullable = true)]
        public string material { get; set; }
 
        /// <summary>
        /// 表面处理
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "表面处理", IsNullable = true)]
        public string surfaceTreatment { get; set; }
 
        /// <summary>
        /// 加工工艺
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "加工工艺", IsNullable = true)]
        public string processingTechnology { get; set; }
 
        /// <summary>
        /// 精度要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "精度要求", IsNullable = true)]
        public string accuracyRequirements { get; set; }
 
        /// <summary>
        /// 检验标准
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "检验标准", IsNullable = true)]
        public string inspectionStandards { get; set; }
 
        /// <summary>
        /// 热处理
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "热处理", IsNullable = true)]
        public string heatTreatment { get; set; }
 
        /// <summary>
        /// 装配要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "装配要求", IsNullable = true)]
        public string assemblyRequirements { get; set; }
 
        /// <summary>
        /// 包装要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "包装要求", IsNullable = true)]
        public string packagingRequirements { get; set; }
 
        /// <summary>
        /// 标识
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "标识", IsNullable = true)]
        public string identification { get; set; }
 
        /// <summary>
        /// 生产周期
        /// </summary>
        [SugarColumn(Length = 200, ColumnDescription = "生产周期", IsNullable = true)]
        public string productionCycle { get; set; }
 
        /// <summary>
        /// 质量控制
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "质量控制", IsNullable = true)]
        public string qualityControl { get; set; }
 
        /// <summary>
        /// 环境要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "环境要求", IsNullable = true)]
        public string environmentalRequirements { get; set; }
 
        /// <summary>
        /// 安全要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "安全要求", IsNullable = true)]
        public string safetyRequirements { get; set; }
 
     }
}