MchFinalCheckTotal.cs 904 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. 
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using Core.Mes.Client.Comm.Attribute;
  5. namespace Core.StlMes.Client.Mcp.Control.Entity
  6. {
  7. public class MchFinalCheckTotal :MchFinalCheckResultDEntity
  8. {
  9. /// <summary>
  10. /// 处置单号
  11. /// </summary>
  12. [Description("处置单号")]
  13. [Nullable(false)]
  14. [DataLength(20)]
  15. public string TreatmentNo { get; set; }
  16. /// <summary>
  17. /// 不合项目
  18. /// </summary>
  19. [Description("不合项目")]
  20. [Nullable(false)]
  21. [DataLength(20)]
  22. public string UnPass { get; set; }
  23. /// <summary>
  24. ///
  25. /// </summary>
  26. [Description("支数")]
  27. [Nullable(false)]
  28. [DataLength(20)]
  29. public string Num { get; set; }
  30. public List<MchFinalCheckResultDEntity> UnPassData { get; set; }
  31. }
  32. }