OrganizationAnnualReport.java 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. package com.goafanti.common.model;
  2. public class OrganizationAnnualReport {
  3. /**
  4. * This field was generated by MyBatis Generator. This field corresponds to the database column organization_annual_report.id
  5. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  6. */
  7. private String id;
  8. /**
  9. * This field was generated by MyBatis Generator. This field corresponds to the database column organization_annual_report.uid
  10. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  11. */
  12. private String uid;
  13. /**
  14. * This field was generated by MyBatis Generator. This field corresponds to the database column organization_annual_report.year
  15. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  16. */
  17. private Integer year;
  18. /**
  19. * This field was generated by MyBatis Generator. This field corresponds to the database column organization_annual_report.sales_amount
  20. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  21. */
  22. private String salesAmount;
  23. /**
  24. * This field was generated by MyBatis Generator. This field corresponds to the database column organization_annual_report.research_amount
  25. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  26. */
  27. private String researchAmount;
  28. /**
  29. * This field was generated by MyBatis Generator. This field corresponds to the database column organization_annual_report.assets
  30. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  31. */
  32. private String assets;
  33. /**
  34. * This field was generated by MyBatis Generator. This field corresponds to the database column organization_annual_report.aid
  35. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  36. */
  37. private String aid;
  38. /**
  39. * This field was generated by MyBatis Generator. This field corresponds to the database column organization_annual_report.fixed_assets
  40. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  41. */
  42. private String fixedAssets;
  43. /**
  44. * This method was generated by MyBatis Generator. This method returns the value of the database column organization_annual_report.id
  45. * @return the value of organization_annual_report.id
  46. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  47. */
  48. public String getId() {
  49. return id;
  50. }
  51. /**
  52. * This method was generated by MyBatis Generator. This method sets the value of the database column organization_annual_report.id
  53. * @param id the value for organization_annual_report.id
  54. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  55. */
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. /**
  60. * This method was generated by MyBatis Generator. This method returns the value of the database column organization_annual_report.uid
  61. * @return the value of organization_annual_report.uid
  62. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  63. */
  64. public String getUid() {
  65. return uid;
  66. }
  67. /**
  68. * This method was generated by MyBatis Generator. This method sets the value of the database column organization_annual_report.uid
  69. * @param uid the value for organization_annual_report.uid
  70. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  71. */
  72. public void setUid(String uid) {
  73. this.uid = uid;
  74. }
  75. /**
  76. * This method was generated by MyBatis Generator. This method returns the value of the database column organization_annual_report.year
  77. * @return the value of organization_annual_report.year
  78. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  79. */
  80. public Integer getYear() {
  81. return year;
  82. }
  83. /**
  84. * This method was generated by MyBatis Generator. This method sets the value of the database column organization_annual_report.year
  85. * @param year the value for organization_annual_report.year
  86. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  87. */
  88. public void setYear(Integer year) {
  89. this.year = year;
  90. }
  91. /**
  92. * This method was generated by MyBatis Generator. This method returns the value of the database column organization_annual_report.sales_amount
  93. * @return the value of organization_annual_report.sales_amount
  94. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  95. */
  96. public String getSalesAmount() {
  97. return salesAmount;
  98. }
  99. /**
  100. * This method was generated by MyBatis Generator. This method sets the value of the database column organization_annual_report.sales_amount
  101. * @param salesAmount the value for organization_annual_report.sales_amount
  102. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  103. */
  104. public void setSalesAmount(String salesAmount) {
  105. this.salesAmount = salesAmount;
  106. }
  107. /**
  108. * This method was generated by MyBatis Generator. This method returns the value of the database column organization_annual_report.research_amount
  109. * @return the value of organization_annual_report.research_amount
  110. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  111. */
  112. public String getResearchAmount() {
  113. return researchAmount;
  114. }
  115. /**
  116. * This method was generated by MyBatis Generator. This method sets the value of the database column organization_annual_report.research_amount
  117. * @param researchAmount the value for organization_annual_report.research_amount
  118. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  119. */
  120. public void setResearchAmount(String researchAmount) {
  121. this.researchAmount = researchAmount;
  122. }
  123. /**
  124. * This method was generated by MyBatis Generator. This method returns the value of the database column organization_annual_report.assets
  125. * @return the value of organization_annual_report.assets
  126. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  127. */
  128. public String getAssets() {
  129. return assets;
  130. }
  131. /**
  132. * This method was generated by MyBatis Generator. This method sets the value of the database column organization_annual_report.assets
  133. * @param assets the value for organization_annual_report.assets
  134. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  135. */
  136. public void setAssets(String assets) {
  137. this.assets = assets;
  138. }
  139. /**
  140. * This method was generated by MyBatis Generator. This method returns the value of the database column organization_annual_report.aid
  141. * @return the value of organization_annual_report.aid
  142. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  143. */
  144. public String getAid() {
  145. return aid;
  146. }
  147. /**
  148. * This method was generated by MyBatis Generator. This method sets the value of the database column organization_annual_report.aid
  149. * @param aid the value for organization_annual_report.aid
  150. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  151. */
  152. public void setAid(String aid) {
  153. this.aid = aid;
  154. }
  155. /**
  156. * This method was generated by MyBatis Generator. This method returns the value of the database column organization_annual_report.fixed_assets
  157. * @return the value of organization_annual_report.fixed_assets
  158. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  159. */
  160. public String getFixedAssets() {
  161. return fixedAssets;
  162. }
  163. /**
  164. * This method was generated by MyBatis Generator. This method sets the value of the database column organization_annual_report.fixed_assets
  165. * @param fixedAssets the value for organization_annual_report.fixed_assets
  166. * @mbg.generated Fri Jul 27 15:10:52 CST 2018
  167. */
  168. public void setFixedAssets(String fixedAssets) {
  169. this.fixedAssets = fixedAssets;
  170. }
  171. }