bus_quality_management.cs 3.55 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("bus_quality_management")]
    public partial class bus_quality_management : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int iD { get; set; }
 
        /// <summary>
        /// 焊接质量控制点
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "焊接质量控制点", IsNullable = true)]
        public string weldControlPoints { get; set; }
 
        /// <summary>
        /// 检测方法
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "检测方法", IsNullable = true)]
        public string inspectionMethods { get; set; }
 
        /// <summary>
        /// 控制方法
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "控制方法", IsNullable = true)]
        public string controlMethods { get; set; }
 
        /// <summary>
        /// 过程追溯要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "过程追溯要求", IsNullable = true)]
        public string processTraceability { get; set; }
 
        /// <summary>
        /// 质量标准
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "质量标准", IsNullable = true)]
        public string qualityStandards { get; set; }
 
        /// <summary>
        /// 质量目标
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "质量目标", IsNullable = true)]
        public string qualityObjectives { get; set; }
 
        /// <summary>
        /// 缺陷分类
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "缺陷分类", IsNullable = true)]
        public string defectClassification { get; set; }
 
        /// <summary>
        /// 纠正措施
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "纠正措施", IsNullable = true)]
        public string correctiveActions { get; set; }
 
        /// <summary>
        /// 预防措施
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "预防措施", IsNullable = true)]
        public string preventiveActions { get; set; }
 
        /// <summary>
        /// 责任部门
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "责任部门", IsNullable = true)]
        public string responsibleDepartment { get; set; }
 
        /// <summary>
        /// 责任人
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "责任人", IsNullable = true)]
        public string responsiblePerson { get; set; }
 
        /// <summary>
        /// 记录要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "记录要求", IsNullable = true)]
        public string recordRequirements { get; set; }
 
        /// <summary>
        /// 培训要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "培训要求", IsNullable = true)]
        public string trainingRequirements { get; set; }
 
        /// <summary>
        /// 审计要求
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "审计要求", IsNullable = true)]
        public string auditRequirements { get; set; }
 
        /// <summary>
        /// 质量评估
        /// </summary>
        [SugarColumn(Length = 400, ColumnDescription = "质量评估", IsNullable = true)]
        public string qualityAssessment { get; set; }
 
     }
}