Healthsystemsub.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. package com.gyee.consumer.model;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. public class Healthsystemsub implements Serializable {
  5. /**
  6. *
  7. * This field was generated by MyBatis Generator.
  8. * This field corresponds to the database column HEALTHSYSTEMSUB.ID
  9. *
  10. * @mbg.generated
  11. */
  12. private String id;
  13. /**
  14. *
  15. * This field was generated by MyBatis Generator.
  16. * This field corresponds to the database column HEALTHSYSTEMSUB.HID
  17. *
  18. * @mbg.generated
  19. */
  20. private String hid;
  21. /**
  22. *
  23. * This field was generated by MyBatis Generator.
  24. * This field corresponds to the database column HEALTHSYSTEMSUB.CODE
  25. *
  26. * @mbg.generated
  27. */
  28. private String code;
  29. /**
  30. *
  31. * This field was generated by MyBatis Generator.
  32. * This field corresponds to the database column HEALTHSYSTEMSUB.NAME
  33. *
  34. * @mbg.generated
  35. */
  36. private String name;
  37. /**
  38. *
  39. * This field was generated by MyBatis Generator.
  40. * This field corresponds to the database column HEALTHSYSTEMSUB.EXPRESSION
  41. *
  42. * @mbg.generated
  43. */
  44. private String expression;
  45. /**
  46. *
  47. * This field was generated by MyBatis Generator.
  48. * This field corresponds to the database column HEALTHSYSTEMSUB.FORMULA
  49. *
  50. * @mbg.generated
  51. */
  52. private String formula;
  53. /**
  54. *
  55. * This field was generated by MyBatis Generator.
  56. * This field corresponds to the database column HEALTHSYSTEMSUB.FORMULAMAX
  57. *
  58. * @mbg.generated
  59. */
  60. private String formulamax;
  61. /**
  62. *
  63. * This field was generated by MyBatis Generator.
  64. * This field corresponds to the database column HEALTHSYSTEMSUB.FORMULAMIN
  65. *
  66. * @mbg.generated
  67. */
  68. private String formulamin;
  69. /**
  70. *
  71. * This field was generated by MyBatis Generator.
  72. * This field corresponds to the database column HEALTHSYSTEMSUB.FORMULASCORE
  73. *
  74. * @mbg.generated
  75. */
  76. private BigDecimal formulascore;
  77. /**
  78. *
  79. * This field was generated by MyBatis Generator.
  80. * This field corresponds to the database column HEALTHSYSTEMSUB.FORMULAMAXSCORE
  81. *
  82. * @mbg.generated
  83. */
  84. private BigDecimal formulamaxscore;
  85. /**
  86. *
  87. * This field was generated by MyBatis Generator.
  88. * This field corresponds to the database column HEALTHSYSTEMSUB.FORMULAMINSCORE
  89. *
  90. * @mbg.generated
  91. */
  92. private BigDecimal formulaminscore;
  93. /**
  94. *
  95. * This field was generated by MyBatis Generator.
  96. * This field corresponds to the database column HEALTHSYSTEMSUB.FUN
  97. *
  98. * @mbg.generated
  99. */
  100. private String fun;
  101. /**
  102. *
  103. * This field was generated by MyBatis Generator.
  104. * This field corresponds to the database column HEALTHSYSTEMSUB.ORDERBY
  105. *
  106. * @mbg.generated
  107. */
  108. private String orderby;
  109. /**
  110. * This field was generated by MyBatis Generator.
  111. * This field corresponds to the database table HEALTHSYSTEMSUB
  112. *
  113. * @mbg.generated
  114. */
  115. private static final long serialVersionUID = 1L;
  116. /**
  117. * This method was generated by MyBatis Generator.
  118. * This method returns the value of the database column HEALTHSYSTEMSUB.ID
  119. *
  120. * @return the value of HEALTHSYSTEMSUB.ID
  121. *
  122. * @mbg.generated
  123. */
  124. public String getId() {
  125. return id;
  126. }
  127. /**
  128. * This method was generated by MyBatis Generator.
  129. * This method sets the value of the database column HEALTHSYSTEMSUB.ID
  130. *
  131. * @param id the value for HEALTHSYSTEMSUB.ID
  132. *
  133. * @mbg.generated
  134. */
  135. public void setId(String id) {
  136. this.id = id == null ? null : id.trim();
  137. }
  138. /**
  139. * This method was generated by MyBatis Generator.
  140. * This method returns the value of the database column HEALTHSYSTEMSUB.HID
  141. *
  142. * @return the value of HEALTHSYSTEMSUB.HID
  143. *
  144. * @mbg.generated
  145. */
  146. public String getHid() {
  147. return hid;
  148. }
  149. /**
  150. * This method was generated by MyBatis Generator.
  151. * This method sets the value of the database column HEALTHSYSTEMSUB.HID
  152. *
  153. * @param hid the value for HEALTHSYSTEMSUB.HID
  154. *
  155. * @mbg.generated
  156. */
  157. public void setHid(String hid) {
  158. this.hid = hid == null ? null : hid.trim();
  159. }
  160. /**
  161. * This method was generated by MyBatis Generator.
  162. * This method returns the value of the database column HEALTHSYSTEMSUB.CODE
  163. *
  164. * @return the value of HEALTHSYSTEMSUB.CODE
  165. *
  166. * @mbg.generated
  167. */
  168. public String getCode() {
  169. return code;
  170. }
  171. /**
  172. * This method was generated by MyBatis Generator.
  173. * This method sets the value of the database column HEALTHSYSTEMSUB.CODE
  174. *
  175. * @param code the value for HEALTHSYSTEMSUB.CODE
  176. *
  177. * @mbg.generated
  178. */
  179. public void setCode(String code) {
  180. this.code = code == null ? null : code.trim();
  181. }
  182. /**
  183. * This method was generated by MyBatis Generator.
  184. * This method returns the value of the database column HEALTHSYSTEMSUB.NAME
  185. *
  186. * @return the value of HEALTHSYSTEMSUB.NAME
  187. *
  188. * @mbg.generated
  189. */
  190. public String getName() {
  191. return name;
  192. }
  193. /**
  194. * This method was generated by MyBatis Generator.
  195. * This method sets the value of the database column HEALTHSYSTEMSUB.NAME
  196. *
  197. * @param name the value for HEALTHSYSTEMSUB.NAME
  198. *
  199. * @mbg.generated
  200. */
  201. public void setName(String name) {
  202. this.name = name == null ? null : name.trim();
  203. }
  204. /**
  205. * This method was generated by MyBatis Generator.
  206. * This method returns the value of the database column HEALTHSYSTEMSUB.EXPRESSION
  207. *
  208. * @return the value of HEALTHSYSTEMSUB.EXPRESSION
  209. *
  210. * @mbg.generated
  211. */
  212. public String getExpression() {
  213. return expression;
  214. }
  215. /**
  216. * This method was generated by MyBatis Generator.
  217. * This method sets the value of the database column HEALTHSYSTEMSUB.EXPRESSION
  218. *
  219. * @param expression the value for HEALTHSYSTEMSUB.EXPRESSION
  220. *
  221. * @mbg.generated
  222. */
  223. public void setExpression(String expression) {
  224. this.expression = expression == null ? null : expression.trim();
  225. }
  226. /**
  227. * This method was generated by MyBatis Generator.
  228. * This method returns the value of the database column HEALTHSYSTEMSUB.FORMULA
  229. *
  230. * @return the value of HEALTHSYSTEMSUB.FORMULA
  231. *
  232. * @mbg.generated
  233. */
  234. public String getFormula() {
  235. return formula;
  236. }
  237. /**
  238. * This method was generated by MyBatis Generator.
  239. * This method sets the value of the database column HEALTHSYSTEMSUB.FORMULA
  240. *
  241. * @param formula the value for HEALTHSYSTEMSUB.FORMULA
  242. *
  243. * @mbg.generated
  244. */
  245. public void setFormula(String formula) {
  246. this.formula = formula == null ? null : formula.trim();
  247. }
  248. /**
  249. * This method was generated by MyBatis Generator.
  250. * This method returns the value of the database column HEALTHSYSTEMSUB.FORMULAMAX
  251. *
  252. * @return the value of HEALTHSYSTEMSUB.FORMULAMAX
  253. *
  254. * @mbg.generated
  255. */
  256. public String getFormulamax() {
  257. return formulamax;
  258. }
  259. /**
  260. * This method was generated by MyBatis Generator.
  261. * This method sets the value of the database column HEALTHSYSTEMSUB.FORMULAMAX
  262. *
  263. * @param formulamax the value for HEALTHSYSTEMSUB.FORMULAMAX
  264. *
  265. * @mbg.generated
  266. */
  267. public void setFormulamax(String formulamax) {
  268. this.formulamax = formulamax == null ? null : formulamax.trim();
  269. }
  270. /**
  271. * This method was generated by MyBatis Generator.
  272. * This method returns the value of the database column HEALTHSYSTEMSUB.FORMULAMIN
  273. *
  274. * @return the value of HEALTHSYSTEMSUB.FORMULAMIN
  275. *
  276. * @mbg.generated
  277. */
  278. public String getFormulamin() {
  279. return formulamin;
  280. }
  281. /**
  282. * This method was generated by MyBatis Generator.
  283. * This method sets the value of the database column HEALTHSYSTEMSUB.FORMULAMIN
  284. *
  285. * @param formulamin the value for HEALTHSYSTEMSUB.FORMULAMIN
  286. *
  287. * @mbg.generated
  288. */
  289. public void setFormulamin(String formulamin) {
  290. this.formulamin = formulamin == null ? null : formulamin.trim();
  291. }
  292. /**
  293. * This method was generated by MyBatis Generator.
  294. * This method returns the value of the database column HEALTHSYSTEMSUB.FORMULASCORE
  295. *
  296. * @return the value of HEALTHSYSTEMSUB.FORMULASCORE
  297. *
  298. * @mbg.generated
  299. */
  300. public BigDecimal getFormulascore() {
  301. return formulascore;
  302. }
  303. /**
  304. * This method was generated by MyBatis Generator.
  305. * This method sets the value of the database column HEALTHSYSTEMSUB.FORMULASCORE
  306. *
  307. * @param formulascore the value for HEALTHSYSTEMSUB.FORMULASCORE
  308. *
  309. * @mbg.generated
  310. */
  311. public void setFormulascore(BigDecimal formulascore) {
  312. this.formulascore = formulascore;
  313. }
  314. /**
  315. * This method was generated by MyBatis Generator.
  316. * This method returns the value of the database column HEALTHSYSTEMSUB.FORMULAMAXSCORE
  317. *
  318. * @return the value of HEALTHSYSTEMSUB.FORMULAMAXSCORE
  319. *
  320. * @mbg.generated
  321. */
  322. public BigDecimal getFormulamaxscore() {
  323. return formulamaxscore;
  324. }
  325. /**
  326. * This method was generated by MyBatis Generator.
  327. * This method sets the value of the database column HEALTHSYSTEMSUB.FORMULAMAXSCORE
  328. *
  329. * @param formulamaxscore the value for HEALTHSYSTEMSUB.FORMULAMAXSCORE
  330. *
  331. * @mbg.generated
  332. */
  333. public void setFormulamaxscore(BigDecimal formulamaxscore) {
  334. this.formulamaxscore = formulamaxscore;
  335. }
  336. /**
  337. * This method was generated by MyBatis Generator.
  338. * This method returns the value of the database column HEALTHSYSTEMSUB.FORMULAMINSCORE
  339. *
  340. * @return the value of HEALTHSYSTEMSUB.FORMULAMINSCORE
  341. *
  342. * @mbg.generated
  343. */
  344. public BigDecimal getFormulaminscore() {
  345. return formulaminscore;
  346. }
  347. /**
  348. * This method was generated by MyBatis Generator.
  349. * This method sets the value of the database column HEALTHSYSTEMSUB.FORMULAMINSCORE
  350. *
  351. * @param formulaminscore the value for HEALTHSYSTEMSUB.FORMULAMINSCORE
  352. *
  353. * @mbg.generated
  354. */
  355. public void setFormulaminscore(BigDecimal formulaminscore) {
  356. this.formulaminscore = formulaminscore;
  357. }
  358. /**
  359. * This method was generated by MyBatis Generator.
  360. * This method returns the value of the database column HEALTHSYSTEMSUB.FUN
  361. *
  362. * @return the value of HEALTHSYSTEMSUB.FUN
  363. *
  364. * @mbg.generated
  365. */
  366. public String getFun() {
  367. return fun;
  368. }
  369. /**
  370. * This method was generated by MyBatis Generator.
  371. * This method sets the value of the database column HEALTHSYSTEMSUB.FUN
  372. *
  373. * @param fun the value for HEALTHSYSTEMSUB.FUN
  374. *
  375. * @mbg.generated
  376. */
  377. public void setFun(String fun) {
  378. this.fun = fun == null ? null : fun.trim();
  379. }
  380. /**
  381. * This method was generated by MyBatis Generator.
  382. * This method returns the value of the database column HEALTHSYSTEMSUB.ORDERBY
  383. *
  384. * @return the value of HEALTHSYSTEMSUB.ORDERBY
  385. *
  386. * @mbg.generated
  387. */
  388. public String getOrderby() {
  389. return orderby;
  390. }
  391. /**
  392. * This method was generated by MyBatis Generator.
  393. * This method sets the value of the database column HEALTHSYSTEMSUB.ORDERBY
  394. *
  395. * @param orderby the value for HEALTHSYSTEMSUB.ORDERBY
  396. *
  397. * @mbg.generated
  398. */
  399. public void setOrderby(String orderby) {
  400. this.orderby = orderby == null ? null : orderby.trim();
  401. }
  402. }