| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- package com.izouma.awesomeadmin.model;
- import java.math.BigDecimal;
- import java.util.*;
- import com.fasterxml.jackson.annotation.JsonAutoDetect;
- import com.fasterxml.jackson.annotation.JsonInclude;
- @JsonAutoDetect
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class CompetitionSeason {
- private Integer id;
- private String delFlag;
- private Date updateTime;
- private String updateUser;
- private Date createTime;
- private String createUser;
- private String season;
- private String shortName;
- private Date beginTime;
- private Date endTime;
- private BigDecimal bonus;
- private String remark;
- private Integer rank;
- private Integer statusFlag;
- private Integer gameId;
- private String idStr;
- private String searchKey;
- private GameInfo gameInfo;
- private BigDecimal firstRatio;
- private BigDecimal secondRatio;
- private BigDecimal thirdRatio;
- /**
- * 已发放奖金
- */
- private BigDecimal bonusPaid;
- /**
- * and,test_name,like,value;or,remark,=,123
- */
- private String advancedQuery;
- /**
- * column_name_,desc_;column_name_,asc
- */
- private String orderByStr;
- private int userId;
- private PlayerInfo playerInfo;
- public Integer getId() {
- return this.id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getDelFlag() {
- return this.delFlag;
- }
- public void setDelFlag(String delFlag) {
- this.delFlag = delFlag;
- }
- public Date getUpdateTime() {
- return this.updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- public String getUpdateUser() {
- return this.updateUser;
- }
- public void setUpdateUser(String updateUser) {
- this.updateUser = updateUser;
- }
- public Date getCreateTime() {
- return this.createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getCreateUser() {
- return this.createUser;
- }
- public void setCreateUser(String createUser) {
- this.createUser = createUser;
- }
- public String getSeason() {
- return this.season;
- }
- public void setSeason(String season) {
- this.season = season;
- }
- public String getShortName() {
- return this.shortName;
- }
- public void setShortName(String shortName) {
- this.shortName = shortName;
- }
- public Date getBeginTime() {
- return this.beginTime;
- }
- public void setBeginTime(Date beginTime) {
- this.beginTime = beginTime;
- }
- public Date getEndTime() {
- return this.endTime;
- }
- public void setEndTime(Date endTime) {
- this.endTime = endTime;
- }
- public BigDecimal getBonus() {
- return this.bonus;
- }
- public void setBonus(BigDecimal bonus) {
- this.bonus = bonus;
- }
- public String getRemark() {
- return this.remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public Integer getRank() {
- return this.rank;
- }
- public void setRank(Integer rank) {
- this.rank = rank;
- }
- public Integer getStatusFlag() {
- return this.statusFlag;
- }
- public void setStatusFlag(Integer statusFlag) {
- this.statusFlag = statusFlag;
- }
- public String getSearchKey() {
- return searchKey;
- }
- public void setSearchKey(String searchKey) {
- this.searchKey = searchKey;
- }
- public String getAdvancedQuery() {
- return advancedQuery;
- }
- public void setAdvancedQuery(String advancedQuery) {
- this.advancedQuery = advancedQuery;
- }
- public String getOrderByStr() {
- return orderByStr;
- }
- public void setOrderByStr(String orderByStr) {
- this.orderByStr = orderByStr;
- }
- public String getIdStr() {
- return idStr;
- }
- public void setIdStr(String idStr) {
- this.idStr = idStr;
- }
- public Integer getGameId() {
- return gameId;
- }
- public void setGameId(Integer gameId) {
- this.gameId = gameId;
- }
- public GameInfo getGameInfo() {
- return gameInfo;
- }
- public void setGameInfo(GameInfo gameInfo) {
- this.gameInfo = gameInfo;
- }
- public BigDecimal getFirstRatio() {
- return firstRatio;
- }
- public void setFirstRatio(BigDecimal firstRatio) {
- this.firstRatio = firstRatio;
- }
- public BigDecimal getSecondRatio() {
- return secondRatio;
- }
- public void setSecondRatio(BigDecimal secondRatio) {
- this.secondRatio = secondRatio;
- }
- public BigDecimal getThirdRatio() {
- return thirdRatio;
- }
- public void setThirdRatio(BigDecimal thirdRatio) {
- this.thirdRatio = thirdRatio;
- }
- public BigDecimal getBonusPaid() {
- return bonusPaid;
- }
- public void setBonusPaid(BigDecimal bonusPaid) {
- this.bonusPaid = bonusPaid;
- }
- public int getUserId() {
- return userId;
- }
- public void setUserId(int userId) {
- this.userId = userId;
- }
- public PlayerInfo getPlayerInfo() {
- return playerInfo;
- }
- public void setPlayerInfo(PlayerInfo playerInfo) {
- this.playerInfo = playerInfo;
- }
- }
|