TempConstant.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. package com.huimv.temp.dataobject;
  2. import com.huimv.xt.dataobject.BaseDO;
  3. public class TempConstant extends BaseDO {
  4. /**
  5. * This field was generated by Apache iBATIS ibator.
  6. * This field corresponds to the database column temp_constant.MCID
  7. *
  8. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  9. */
  10. private Integer mcid;
  11. /**
  12. * This field was generated by Apache iBATIS ibator.
  13. * This field corresponds to the database column temp_constant.SCSJ
  14. *
  15. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  16. */
  17. private String scsj;
  18. /**
  19. * This field was generated by Apache iBATIS ibator.
  20. * This field corresponds to the database column temp_constant.HBSJ
  21. *
  22. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  23. */
  24. private String hbsj;
  25. /**
  26. * This field was generated by Apache iBATIS ibator.
  27. * This field corresponds to the database column temp_constant.FKXX
  28. *
  29. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  30. */
  31. private String fkxx;
  32. /**
  33. * This method was generated by Apache iBATIS ibator.
  34. * This method returns the value of the database column temp_constant.MCID
  35. *
  36. * @return the value of temp_constant.MCID
  37. *
  38. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  39. */
  40. public Integer getMcid() {
  41. return mcid;
  42. }
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method sets the value of the database column temp_constant.MCID
  46. *
  47. * @param mcid the value for temp_constant.MCID
  48. *
  49. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  50. */
  51. public void setMcid(Integer mcid) {
  52. this.mcid = mcid;
  53. }
  54. /**
  55. * This method was generated by Apache iBATIS ibator.
  56. * This method returns the value of the database column temp_constant.SCSJ
  57. *
  58. * @return the value of temp_constant.SCSJ
  59. *
  60. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  61. */
  62. public String getScsj() {
  63. return scsj;
  64. }
  65. /**
  66. * This method was generated by Apache iBATIS ibator.
  67. * This method sets the value of the database column temp_constant.SCSJ
  68. *
  69. * @param scsj the value for temp_constant.SCSJ
  70. *
  71. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  72. */
  73. public void setScsj(String scsj) {
  74. this.scsj = scsj == null ? null : scsj.trim();
  75. }
  76. /**
  77. * This method was generated by Apache iBATIS ibator.
  78. * This method returns the value of the database column temp_constant.HBSJ
  79. *
  80. * @return the value of temp_constant.HBSJ
  81. *
  82. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  83. */
  84. public String getHbsj() {
  85. return hbsj;
  86. }
  87. /**
  88. * This method was generated by Apache iBATIS ibator.
  89. * This method sets the value of the database column temp_constant.HBSJ
  90. *
  91. * @param hbsj the value for temp_constant.HBSJ
  92. *
  93. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  94. */
  95. public void setHbsj(String hbsj) {
  96. this.hbsj = hbsj == null ? null : hbsj.trim();
  97. }
  98. /**
  99. * This method was generated by Apache iBATIS ibator.
  100. * This method returns the value of the database column temp_constant.FKXX
  101. *
  102. * @return the value of temp_constant.FKXX
  103. *
  104. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  105. */
  106. public String getFkxx() {
  107. return fkxx;
  108. }
  109. /**
  110. * This method was generated by Apache iBATIS ibator.
  111. * This method sets the value of the database column temp_constant.FKXX
  112. *
  113. * @param fkxx the value for temp_constant.FKXX
  114. *
  115. * @ibatorgenerated Fri Dec 01 13:04:24 CST 2017
  116. */
  117. public void setFkxx(String fkxx) {
  118. this.fkxx = fkxx == null ? null : fkxx.trim();
  119. }
  120. }