| 123456789101112131415161718192021222324252627282930313233343536373839 |
-
- using System.Collections.Generic;
- using System.ComponentModel;
- using Core.Mes.Client.Comm.Attribute;
- namespace Core.StlMes.Client.Mcp.Control.Entity
- {
- public class MchFinalCheckTotal :MchFinalCheckResultDEntity
- {
- /// <summary>
- /// 处置单号
- /// </summary>
- [Description("处置单号")]
- [Nullable(false)]
- [DataLength(20)]
- public string TreatmentNo { get; set; }
- /// <summary>
- /// 不合项目
- /// </summary>
- [Description("不合项目")]
- [Nullable(false)]
- [DataLength(20)]
- public string UnPass { get; set; }
- /// <summary>
- ///
- /// </summary>
- [Description("支数")]
- [Nullable(false)]
- [DataLength(20)]
- public string Num { get; set; }
- public List<MchFinalCheckResultDEntity> UnPassData { get; set; }
- }
- }
|