QcmZgPhyJudgeCtrlEntity.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Core.StlMes.Client.Judge.Models;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.ComponentModel;
  6. namespace Core.StlMes.Client.Judge.ViewModels
  7. {
  8. public class QcmZgPhyJudgeCtrlEntity : QcmZgPhyjudgeEntity
  9. {
  10. /// <summary>
  11. /// 有效标志(1:有效,0:无效)
  12. /// </summary>
  13. private string validflagDesc = "";
  14. /// <summary>
  15. /// 有效标志(1:有效,0:无效)
  16. /// </summary>
  17. [Description("有效标志")]
  18. [Nullable(false)]
  19. [DataLength(1)]
  20. [JsonProperty("validflagDesc")]
  21. public string ValidflagDesc
  22. {
  23. get { return validflagDesc; }
  24. set { validflagDesc = value; }
  25. }
  26. private string judgeresultPhyDesc = "";
  27. /// <summary>
  28. /// 理化判定结果
  29. /// </summary>
  30. [Description("理化判定结果")]
  31. [Nullable(false)]
  32. [DataLength(1)]
  33. [JsonProperty("judgeresultPhyDesc")]
  34. public string JudgeresultPhyDesc
  35. {
  36. get { return judgeresultPhyDesc; }
  37. set { judgeresultPhyDesc = value; }
  38. }
  39. private string plineName = "";
  40. /// <summary>
  41. /// 产线
  42. /// </summary>
  43. [Description("产线")]
  44. [Nullable(false)]
  45. [DataLength(1)]
  46. [JsonProperty("plineName")]
  47. public string PlineName
  48. {
  49. get { return plineName; }
  50. set { plineName = value; }
  51. }
  52. private string judgegradedesc = "";
  53. /// <summary>
  54. /// 判定钢种
  55. /// </summary>
  56. [Description("判定钢种")]
  57. [Nullable(false)]
  58. [DataLength(1)]
  59. [JsonProperty("judgegradedesc")]
  60. public string Judgegradedesc
  61. {
  62. get { return judgegradedesc; }
  63. set { judgegradedesc = value; }
  64. }
  65. private string judgesteelname = "";
  66. /// <summary>
  67. /// 判定钢级(牌号)
  68. /// </summary>
  69. [Description("判定钢级(牌号)")]
  70. [Nullable(false)]
  71. [DataLength(1)]
  72. [JsonProperty("judgesteelname")]
  73. public string Judgesteelname
  74. {
  75. get { return judgesteelname; }
  76. set { judgesteelname = value; }
  77. }
  78. }
  79. }