BalanceCicpriceC.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class BalanceCicpriceC
  7. {
  8. /** 主键 */
  9. private string id;
  10. public string Id
  11. {
  12. get { return id; }
  13. set { id = value; }
  14. }
  15. /** 标准号 */
  16. private string standId;
  17. public string StandId
  18. {
  19. get { return standId; }
  20. set { standId = value; }
  21. }
  22. /** 处理方式 */
  23. private string dealType;
  24. public string DealType
  25. {
  26. get { return dealType; }
  27. set { dealType = value; }
  28. }
  29. /** 检化验来源 */
  30. private string inspSrc;
  31. public string InspSrc
  32. {
  33. get { return inspSrc; }
  34. set { inspSrc = value; }
  35. }
  36. /** 结算类别 */
  37. private string balanceType;
  38. public string BalanceType
  39. {
  40. get { return balanceType; }
  41. set { balanceType = value; }
  42. }
  43. /** 价格计算方式 */
  44. private string priceCalcType;
  45. public string PriceCalcType
  46. {
  47. get { return priceCalcType; }
  48. set { priceCalcType = value; }
  49. }
  50. /** 上限符号 */
  51. private string maxSign;
  52. public string MaxSign
  53. {
  54. get { return maxSign; }
  55. set { maxSign = value; }
  56. }
  57. /** 上限值 */
  58. private double? maxVal;
  59. public double? MaxVal
  60. {
  61. get { return maxVal; }
  62. set { maxVal = value; }
  63. }
  64. /** 下限符号 */
  65. private string minSign;
  66. public string MinSign
  67. {
  68. get { return minSign; }
  69. set { minSign = value; }
  70. }
  71. /** 下限值 */
  72. private double? minVal;
  73. public double? MinVal
  74. {
  75. get { return minVal; }
  76. set { minVal = value; }
  77. }
  78. /** 步长 */
  79. private double? stepLen;
  80. public double? StepLen
  81. {
  82. get { return stepLen; }
  83. set { stepLen = value; }
  84. }
  85. /** 加减额度(含正负) */
  86. private double? addSubtValue;
  87. public double? AddSubtValue
  88. {
  89. get { return addSubtValue; }
  90. set { addSubtValue = value; }
  91. }
  92. /** 计算公式 */
  93. private string calcFormula;
  94. public string CalcFormula
  95. {
  96. get { return calcFormula; }
  97. set { calcFormula = value; }
  98. }
  99. /** 备注 */
  100. private string remark;
  101. public string Remark
  102. {
  103. get { return remark; }
  104. set { remark = value; }
  105. }
  106. /** 数据状态(有效、无效) */
  107. private string validflag;
  108. public string Validflag
  109. {
  110. get { return validflag; }
  111. set { validflag = value; }
  112. }
  113. /** 创建人 */
  114. private string createName;
  115. public string CreateName
  116. {
  117. get { return createName; }
  118. set { createName = value; }
  119. }
  120. /** 创建时间 */
  121. private DateTime? createTime;
  122. public DateTime? CreateTime
  123. {
  124. get { return createTime; }
  125. set { createTime = value; }
  126. }
  127. /** 修改人 */
  128. private string updateName;
  129. public string UpdateName
  130. {
  131. get { return updateName; }
  132. set { updateName = value; }
  133. }
  134. /** 修改时间 */
  135. private DateTime? updateTime;
  136. public DateTime? UpdateTime
  137. {
  138. get { return updateTime; }
  139. set { updateTime = value; }
  140. }
  141. /** 废除人 */
  142. private string deleteName;
  143. public string DeleteName
  144. {
  145. get { return deleteName; }
  146. set { deleteName = value; }
  147. }
  148. /** 废除时间 */
  149. private DateTime? deleteTime;
  150. public DateTime? DeleteTime
  151. {
  152. get { return deleteTime; }
  153. set { deleteTime = value; }
  154. }
  155. /** 创建人ID */
  156. private string createUserid;
  157. public string CreateUserid
  158. {
  159. get { return createUserid; }
  160. set { createUserid = value; }
  161. }
  162. /** 修改人ID */
  163. private string updateUserid;
  164. public string UpdateUserid
  165. {
  166. get { return updateUserid; }
  167. set { updateUserid = value; }
  168. }
  169. /** 废除人ID */
  170. private string deleteUserid;
  171. public string DeleteUserid
  172. {
  173. get { return deleteUserid; }
  174. set { deleteUserid = value; }
  175. }
  176. /** 元素代码 */
  177. private string chemCode;
  178. public string ChemCode
  179. {
  180. get { return chemCode; }
  181. set { chemCode = value; }
  182. }
  183. /** 元素名称 */
  184. private string chemName;
  185. public string ChemName
  186. {
  187. get { return chemName; }
  188. set { chemName = value; }
  189. }
  190. /** 检验类型 */
  191. private string chemType;
  192. public string ChemType
  193. {
  194. get { return chemType; }
  195. set { chemType = value; }
  196. }
  197. /** 检验公式 */
  198. private string chemFormula;
  199. public string ChemFormula
  200. {
  201. get { return chemFormula; }
  202. set { chemFormula = value; }
  203. }
  204. }
  205. }