MatBcMEntity4.cs 1013 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Core.StlMes.Client.YdmBcPipeManage.Entity
  8. {
  9. class MatBcMEntity4 : MatBcMEntity1
  10. {
  11. private string reason1 = "";
  12. private string reason2 = "";
  13. private string reason3 = "";
  14. [Description("离线原因1")]
  15. [Nullable(true)]
  16. [DataLength(10)]
  17. public string Reason1
  18. {
  19. get { return reason1; }
  20. set { reason1 = value; }
  21. }
  22. [Description("离线原因2")]
  23. [Nullable(true)]
  24. [DataLength(10)]
  25. public string Reason2
  26. {
  27. get { return reason2; }
  28. set { reason2 = value; }
  29. }
  30. [Description("离线原因3")]
  31. [Nullable(true)]
  32. [DataLength(10)]
  33. public string Reason3
  34. {
  35. get { return reason3; }
  36. set { reason3 = value; }
  37. }
  38. }
  39. }