using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace MES.Service.Modes { /// /// /// [SugarTable("MES_QUALITY_STANDARD")] public class MesQualityStandard { /// /// /// [SugarColumn(ColumnName="ID" ,IsPrimaryKey = true )] public decimal Id { get; set; } /// /// 模具号 /// [SugarColumn(ColumnName="MOID_NUM" )] public string MoidNum { get; set; } /// /// 项目名称 /// [SugarColumn(ColumnName="PROJ_NAME" )] public string ProjName { get; set; } /// /// 质量要求 /// [SugarColumn(ColumnName="ITEM_MOD" )] public string ItemMod { get; set; } /// /// 检验方法 /// [SugarColumn(ColumnName="INSPECTION_METHOD" )] public string InspectionMethod { get; set; } /// /// 使用仪表 /// [SugarColumn(ColumnName="USING_INSTRUMENTS" )] public string UsingInstruments { get; set; } /// /// 检验水平 /// [SugarColumn(ColumnName="INSPECTION_LEVEL" )] public string InspectionLevel { get; set; } /// /// 每模多少个 /// [SugarColumn(ColumnName="LEVEL_NUM" )] public string LevelNum { get; set; } /// /// 上限 /// [SugarColumn(ColumnName="MAX_VALUE" )] public string MaxValue { get; set; } /// /// 标准 /// [SugarColumn(ColumnName="STANDARD_VALUE" )] public string StandardValue { get; set; } /// /// 下限 /// [SugarColumn(ColumnName="MIN_VALUE" )] public string MinValue { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="NOTES" )] public string Notes { get; set; } /// /// 类型 /// [SugarColumn(ColumnName="QS_TYPE" )] public string QsType { get; set; } /// /// 检验水平 /// [SugarColumn(ColumnName="FCHECK_LEVEL" )] public string FcheckLevel { get; set; } /// /// 接受水平 /// [SugarColumn(ColumnName="FAC_LEVEL" )] public string FacLevel { get; set; } /// /// 检验标准编码 /// [SugarColumn(ColumnName="QS_CODE" )] public string QsCode { get; set; } /// /// 检验标准名称 /// [SugarColumn(ColumnName="QS_NAME" )] public string QsName { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName="CREATE_BY" )] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName="CREATE_DATE" )] public DateTime? CreateDate { get; set; } /// /// 审核状态 /// [SugarColumn(ColumnName="FSUBMIT" )] public decimal? Fsubmit { get; set; } /// /// 审核人 /// [SugarColumn(ColumnName="FSUBMIT_BY" )] public string FsubmitBy { get; set; } /// /// 审核时间 /// [SugarColumn(ColumnName="FSUBMIT_DATE" )] public DateTime? FsubmitDate { get; set; } /// /// /// [SugarColumn(ColumnName="PICTURE" )] public byte[]? Picture { get; set; } /// /// 图片 /// [SugarColumn(ColumnName="PICTURENAME" )] public string Picturename { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName="ITEM_NO" )] public string ItemNo { get; set; } /// /// 物料id /// [SugarColumn(ColumnName="ITEM_ID" )] public decimal? ItemId { get; set; } /// /// 按车间分类父ID /// [SugarColumn(ColumnName="PID" )] public decimal? Pid { get; set; } /// /// 类型编码 /// [SugarColumn(ColumnName="ITEM_TYPE_NO" )] public string ItemTypeNo { get; set; } /// /// 类型编码 /// [SugarColumn(ColumnName="ITEM_TYPE_ID" )] public decimal? ItemTypeId { get; set; } /// /// 车间id /// [SugarColumn(ColumnName="WORKSHOP_ID" )] public decimal? WorkshopId { get; set; } /// /// 组织id /// [SugarColumn(ColumnName="ORGID" )] public decimal? Orgid { get; set; } /// /// 检验标准id /// [SugarColumn(ColumnName="AQL1_ID" )] public decimal? Aql1Id { get; set; } /// /// 项目描述 /// [SugarColumn(ColumnName="MEMO" )] public string Memo { get; set; } } }