CompetitionSeason.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. package com.izouma.awesomeadmin.model;
  2. import java.math.BigDecimal;
  3. import java.util.*;
  4. import com.fasterxml.jackson.annotation.JsonAutoDetect;
  5. import com.fasterxml.jackson.annotation.JsonInclude;
  6. @JsonAutoDetect
  7. @JsonInclude(JsonInclude.Include.NON_NULL)
  8. public class CompetitionSeason {
  9. private Integer id;
  10. private String delFlag;
  11. private Date updateTime;
  12. private String updateUser;
  13. private Date createTime;
  14. private String createUser;
  15. private String season;
  16. private String shortName;
  17. private Date beginTime;
  18. private Date endTime;
  19. private BigDecimal bonus;
  20. private String remark;
  21. private Integer rank;
  22. private Integer statusFlag;
  23. private Integer gameId;
  24. private String idStr;
  25. private String searchKey;
  26. private GameInfo gameInfo;
  27. private BigDecimal firstRatio;
  28. private BigDecimal secondRatio;
  29. private BigDecimal thirdRatio;
  30. /**
  31. * 已发放奖金
  32. */
  33. private BigDecimal bonusPaid;
  34. /**
  35. * and,test_name,like,value;or,remark,=,123
  36. */
  37. private String advancedQuery;
  38. /**
  39. * column_name_,desc_;column_name_,asc
  40. */
  41. private String orderByStr;
  42. private int userId;
  43. private PlayerInfo playerInfo;
  44. public Integer getId() {
  45. return this.id;
  46. }
  47. public void setId(Integer id) {
  48. this.id = id;
  49. }
  50. public String getDelFlag() {
  51. return this.delFlag;
  52. }
  53. public void setDelFlag(String delFlag) {
  54. this.delFlag = delFlag;
  55. }
  56. public Date getUpdateTime() {
  57. return this.updateTime;
  58. }
  59. public void setUpdateTime(Date updateTime) {
  60. this.updateTime = updateTime;
  61. }
  62. public String getUpdateUser() {
  63. return this.updateUser;
  64. }
  65. public void setUpdateUser(String updateUser) {
  66. this.updateUser = updateUser;
  67. }
  68. public Date getCreateTime() {
  69. return this.createTime;
  70. }
  71. public void setCreateTime(Date createTime) {
  72. this.createTime = createTime;
  73. }
  74. public String getCreateUser() {
  75. return this.createUser;
  76. }
  77. public void setCreateUser(String createUser) {
  78. this.createUser = createUser;
  79. }
  80. public String getSeason() {
  81. return this.season;
  82. }
  83. public void setSeason(String season) {
  84. this.season = season;
  85. }
  86. public String getShortName() {
  87. return this.shortName;
  88. }
  89. public void setShortName(String shortName) {
  90. this.shortName = shortName;
  91. }
  92. public Date getBeginTime() {
  93. return this.beginTime;
  94. }
  95. public void setBeginTime(Date beginTime) {
  96. this.beginTime = beginTime;
  97. }
  98. public Date getEndTime() {
  99. return this.endTime;
  100. }
  101. public void setEndTime(Date endTime) {
  102. this.endTime = endTime;
  103. }
  104. public BigDecimal getBonus() {
  105. return this.bonus;
  106. }
  107. public void setBonus(BigDecimal bonus) {
  108. this.bonus = bonus;
  109. }
  110. public String getRemark() {
  111. return this.remark;
  112. }
  113. public void setRemark(String remark) {
  114. this.remark = remark;
  115. }
  116. public Integer getRank() {
  117. return this.rank;
  118. }
  119. public void setRank(Integer rank) {
  120. this.rank = rank;
  121. }
  122. public Integer getStatusFlag() {
  123. return this.statusFlag;
  124. }
  125. public void setStatusFlag(Integer statusFlag) {
  126. this.statusFlag = statusFlag;
  127. }
  128. public String getSearchKey() {
  129. return searchKey;
  130. }
  131. public void setSearchKey(String searchKey) {
  132. this.searchKey = searchKey;
  133. }
  134. public String getAdvancedQuery() {
  135. return advancedQuery;
  136. }
  137. public void setAdvancedQuery(String advancedQuery) {
  138. this.advancedQuery = advancedQuery;
  139. }
  140. public String getOrderByStr() {
  141. return orderByStr;
  142. }
  143. public void setOrderByStr(String orderByStr) {
  144. this.orderByStr = orderByStr;
  145. }
  146. public String getIdStr() {
  147. return idStr;
  148. }
  149. public void setIdStr(String idStr) {
  150. this.idStr = idStr;
  151. }
  152. public Integer getGameId() {
  153. return gameId;
  154. }
  155. public void setGameId(Integer gameId) {
  156. this.gameId = gameId;
  157. }
  158. public GameInfo getGameInfo() {
  159. return gameInfo;
  160. }
  161. public void setGameInfo(GameInfo gameInfo) {
  162. this.gameInfo = gameInfo;
  163. }
  164. public BigDecimal getFirstRatio() {
  165. return firstRatio;
  166. }
  167. public void setFirstRatio(BigDecimal firstRatio) {
  168. this.firstRatio = firstRatio;
  169. }
  170. public BigDecimal getSecondRatio() {
  171. return secondRatio;
  172. }
  173. public void setSecondRatio(BigDecimal secondRatio) {
  174. this.secondRatio = secondRatio;
  175. }
  176. public BigDecimal getThirdRatio() {
  177. return thirdRatio;
  178. }
  179. public void setThirdRatio(BigDecimal thirdRatio) {
  180. this.thirdRatio = thirdRatio;
  181. }
  182. public BigDecimal getBonusPaid() {
  183. return bonusPaid;
  184. }
  185. public void setBonusPaid(BigDecimal bonusPaid) {
  186. this.bonusPaid = bonusPaid;
  187. }
  188. public int getUserId() {
  189. return userId;
  190. }
  191. public void setUserId(int userId) {
  192. this.userId = userId;
  193. }
  194. public PlayerInfo getPlayerInfo() {
  195. return playerInfo;
  196. }
  197. public void setPlayerInfo(PlayerInfo playerInfo) {
  198. this.playerInfo = playerInfo;
  199. }
  200. }