PressWaterCObject.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. namespace Core.StlMes.Client.Qcm.model
  2. {
  3. /// <summary>
  4. /// 水压试验标准从表实体类
  5. /// </summary>
  6. class PressWaterCObject
  7. {
  8. private string wic;
  9. public string Wic
  10. {
  11. get { return wic; }
  12. set { wic = value; }
  13. }
  14. private string xh;
  15. public string Xh
  16. {
  17. get { return xh; }
  18. set { xh = value; }
  19. }
  20. private string pressureY;
  21. public string PressureY
  22. {
  23. get { return pressureY; }
  24. set { pressureY = value; }
  25. }
  26. private string pressure;
  27. public string Pressure
  28. {
  29. get { return pressure; }
  30. set { pressure = value; }
  31. }
  32. private string formula;
  33. public string Formula
  34. {
  35. get { return formula; }
  36. set { formula = value; }
  37. }
  38. private string saveTime;
  39. public string SaveTime
  40. {
  41. get { return saveTime; }
  42. set { saveTime = value; }
  43. }
  44. private string createName;
  45. public string CreateName
  46. {
  47. get { return createName; }
  48. set { createName = value; }
  49. }
  50. private string createTime;
  51. public string CreateTime
  52. {
  53. get { return createTime; }
  54. set { createTime = value; }
  55. }
  56. private string updateName;
  57. public string UpdateName
  58. {
  59. get { return updateName; }
  60. set { updateName = value; }
  61. }
  62. private string updateTime;
  63. public string UpdateTime
  64. {
  65. get { return updateTime; }
  66. set { updateTime = value; }
  67. }
  68. private string deleteName;
  69. public string DeleteName
  70. {
  71. get { return deleteName; }
  72. set { deleteName = value; }
  73. }
  74. private string deleteTime;
  75. public string DeleteTime
  76. {
  77. get { return deleteTime; }
  78. set { deleteTime = value; }
  79. }
  80. private string validflag;
  81. public string Validflag
  82. {
  83. get { return validflag; }
  84. set { validflag = value; }
  85. }
  86. private string memo;
  87. public string Memo
  88. {
  89. get { return memo; }
  90. set { memo = value; }
  91. }
  92. private string minval;
  93. public string Minval
  94. {
  95. get { return minval; }
  96. set { minval = value; }
  97. }
  98. private string maxval;
  99. public string Maxval
  100. {
  101. get { return maxval; }
  102. set { maxval = value; }
  103. }
  104. private string roundRule = "";
  105. public string RoundRule
  106. {
  107. get { return roundRule; }
  108. set { roundRule = value; }
  109. }
  110. private string outputStyle = "";
  111. public string OutputStyle
  112. {
  113. get { return outputStyle; }
  114. set { outputStyle = value; }
  115. }
  116. private string zbsOutputStyle = "";
  117. public string ZbsOutputStyle
  118. {
  119. get { return zbsOutputStyle; }
  120. set { zbsOutputStyle = value; }
  121. }
  122. private string pressureBar = "";
  123. public string PressureBar
  124. {
  125. get { return pressureBar; }
  126. set { pressureBar = value; }
  127. }
  128. }
  129. }