| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- using Core.Mes.Client.Comm.Attribute;
- using Newtonsoft.Json;
- using System;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Judge.Models
- {
- /// <summary>
- /// 数据库表QCM_LG_CHEMJUDGE_EXCEPTION所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
- /// 作者:tgcx-test 时间:2016-09-08
- /// </summary>
- public class QcmLgChemjudgeExceptionEntity
- {
- /// <summary>
- /// 成分判定记录ID(QCM_ZG_CHEMJUDGE)
- /// </summary>
- private string chemJudgeId = "";
- /// <summary>
- /// 生产批号
- /// </summary>
- private string lotNo = "";
- /// <summary>
- /// 判定炉号
- /// </summary>
- private string judgeStoveNo = "";
- /// <summary>
- /// 计划生产订单号
- /// </summary>
- private string planProorder = "";
- /// <summary>
- /// ORD_LN_PK(ORD_PK+三位流失号)
- /// </summary>
- private string ordLnPk = "";
- /// <summary>
- /// 工序代码(A\B\C\D.....)
- /// </summary>
- private string processCdoe = "";
- /// <summary>
- /// 工序名称
- /// </summary>
- private string processDesc = "";
- /// <summary>
- /// 成分判定结果(4074)
- /// </summary>
- private string judgeresultChem = "";
- /// <summary>
- /// 成分化验号
- /// </summary>
- private string assayno = "";
- /// <summary>
- /// 是否脱单(1:是,0:否)
- /// </summary>
- private string orderisunchain = "";
- /// <summary>
- /// 有效标志(1:有效;0:无效)
- /// </summary>
- private string validflag = "";
- /// <summary>
- /// 备注
- /// </summary>
- private string memo = "";
- /// <summary>
- /// 判定人
- /// </summary>
- private string createName = "";
- /// <summary>
- /// 判定时间
- /// </summary>
- private string createTime = "";
- /// <summary>
- /// 成分判定记录ID(QCM_ZG_CHEMJUDGE)
- /// </summary>
- [Description("成分判定记录ID")]
- [Nullable(false)]
- [DataLength(20)]
- [JsonProperty("chemJudgeId")]
- public string ChemJudgeId
- {
- get { return chemJudgeId; }
- set { chemJudgeId = value; }
- }
- /// <summary>
- /// 生产批号
- /// </summary>
- [Description("生产批号")]
- [Nullable(true)]
- [DataLength(20)]
- [JsonProperty("lotNo")]
- public string LotNo
- {
- get { return lotNo; }
- set { lotNo = value; }
- }
- /// <summary>
- /// 判定炉号
- /// </summary>
- [Description("判定炉号")]
- [Nullable(false)]
- [DataLength(6)]
- [JsonProperty("judgeStoveNo")]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /// <summary>
- /// 计划生产订单号
- /// </summary>
- [Description("计划生产订单号")]
- [Nullable(false)]
- [DataLength(40)]
- [JsonProperty("planProorder")]
- public string PlanProorder
- {
- get { return planProorder; }
- set { planProorder = value; }
- }
- /// <summary>
- /// ORD_LN_PK(ORD_PK+三位流失号)
- /// </summary>
- [Description("ORD_LN_PK(ORD_PK+三位流失号)")]
- [Nullable(false)]
- [DataLength(40)]
- [JsonProperty("ordLnPk")]
- public string OrdLnPk
- {
- get { return ordLnPk; }
- set { ordLnPk = value; }
- }
- /// <summary>
- /// 工序代码(A\B\C\D.....)
- /// </summary>
- [Description("工序代码")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("processCdoe")]
- public string ProcessCdoe
- {
- get { return processCdoe; }
- set { processCdoe = value; }
- }
- /// <summary>
- /// 工序名称
- /// </summary>
- [Description("工序名称")]
- [Nullable(true)]
- [DataLength(50)]
- [JsonProperty("processDesc")]
- public string ProcessDesc
- {
- get { return processDesc; }
- set { processDesc = value; }
- }
- /// <summary>
- /// 成分判定结果(4074)
- /// </summary>
- [Description("成分判定结果")]
- [Nullable(false)]
- [DataLength(20)]
- [JsonProperty("judgeresultChem")]
- public string JudgeresultChem
- {
- get { return judgeresultChem; }
- set { judgeresultChem = value; }
- }
- /// <summary>
- /// 成分化验号
- /// </summary>
- [Description("成分化验号")]
- [Nullable(false)]
- [DataLength(300)]
- [JsonProperty("assayno")]
- public string Assayno
- {
- get { return assayno; }
- set { assayno = value; }
- }
- /// <summary>
- /// 是否脱单(1:是,0:否)
- /// </summary>
- [Description("是否脱单")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("orderisunchain")]
- public string Orderisunchain
- {
- get { return orderisunchain; }
- set { orderisunchain = value; }
- }
- /// <summary>
- /// 有效标志(1:有效;0:无效)
- /// </summary>
- [Description("有效标志")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("validflag")]
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- [Nullable(true)]
- [DataLength(500)]
- [JsonProperty("memo")]
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- /// <summary>
- /// 判定人
- /// </summary>
- [Description("判定人")]
- [Nullable(true)]
- [DataLength(20)]
- [JsonProperty("createName")]
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /// <summary>
- /// 判定时间
- /// </summary>
- [Description("判定时间")]
- [Nullable(true)]
- [JsonProperty("createTime")]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- }
- }
|