generated from root/miduo_server
充值礼包对象修改
parent
6bce85c6a8
commit
096d4a4d0c
|
|
@ -21,46 +21,37 @@ public class SRechargeCommodityConfig {
|
|||
|
||||
private int[][] baseReward;
|
||||
|
||||
private int[][][] extraReward;
|
||||
private int[] openPrivilege;
|
||||
|
||||
private int contiueDays;
|
||||
|
||||
private int limit;
|
||||
|
||||
private int firstInvest;
|
||||
|
||||
private int isDiscount;
|
||||
|
||||
private int[] discountType;
|
||||
|
||||
private int order;
|
||||
|
||||
private int accumulativeRecharge;
|
||||
|
||||
private int[][] playerLevel;
|
||||
private int time;
|
||||
|
||||
private int[] openPrivilege;
|
||||
private String onSaleRule;
|
||||
|
||||
private int contiueDays;
|
||||
private int[] forbid;
|
||||
|
||||
private int dailyUpdate;
|
||||
|
||||
private int[] mail;
|
||||
|
||||
private int otype;
|
||||
|
||||
private String rechargeId2;
|
||||
|
||||
private String rechargeId3;
|
||||
|
||||
private int time;
|
||||
private String startTime;
|
||||
private String endtime;
|
||||
private String rechargeId4;
|
||||
|
||||
private String rechargeId5;
|
||||
|
||||
private long startTimeLong;
|
||||
private long endTimeLong;
|
||||
|
||||
private int limitShow;
|
||||
|
||||
private int dailyUpdate;
|
||||
|
||||
private int[] passiveSkill;
|
||||
|
||||
private int showType;
|
||||
|
||||
private String rechargeId6;
|
||||
|
||||
public static Map<String, SRechargeCommodityConfig> sdkRechargeCommodityConfigMap;
|
||||
|
||||
|
|
@ -76,126 +67,59 @@ public class SRechargeCommodityConfig {
|
|||
|
||||
}
|
||||
|
||||
public int getId() { return id; }
|
||||
|
||||
public String getRechargeId() { return rechargeId; }
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
public String getName() { return name; }
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public double getPrice() {
|
||||
return price;
|
||||
public double getPrice() { return price; }
|
||||
|
||||
public int[][] getFirstMultiple() { return firstMultiple; }
|
||||
|
||||
public int[][] getBaseReward() { return baseReward; }
|
||||
|
||||
public int[] getOpenPrivilege() { return openPrivilege; }
|
||||
|
||||
public int getContiueDays() { return contiueDays; }
|
||||
|
||||
public int getLimit() { return limit; }
|
||||
|
||||
public int getFirstInvest() { return firstInvest; }
|
||||
|
||||
public int getAccumulativeRecharge() { return accumulativeRecharge; }
|
||||
|
||||
public int getTime() { return time; }
|
||||
|
||||
public String getOnSaleRule() { return onSaleRule; }
|
||||
|
||||
public int getDailyUpdate() { return dailyUpdate; }
|
||||
|
||||
public int[] getMail() { return mail; }
|
||||
|
||||
public int getOtype() { return otype; }
|
||||
|
||||
public String getRechargeId2() { return rechargeId2; }
|
||||
|
||||
public String getRechargeId3() { return rechargeId3; }
|
||||
|
||||
public String getRechargeId4() {
|
||||
return rechargeId4;
|
||||
}
|
||||
|
||||
public int[][] getFirstMultiple() {
|
||||
return firstMultiple;
|
||||
public String getRechargeId5() {
|
||||
return rechargeId5;
|
||||
}
|
||||
|
||||
public int[][] getBaseReward() {
|
||||
return baseReward;
|
||||
public String getRechargeId6() {
|
||||
return rechargeId6;
|
||||
}
|
||||
|
||||
public int[][][] getExtraReward() {
|
||||
return extraReward;
|
||||
public int[] getForbid() {
|
||||
return forbid;
|
||||
}
|
||||
|
||||
public int getLimit() {
|
||||
return limit;
|
||||
}
|
||||
|
||||
public int getFirstInvest() {
|
||||
return firstInvest;
|
||||
}
|
||||
|
||||
public int getIsDiscount() {
|
||||
return isDiscount;
|
||||
}
|
||||
|
||||
public int[] getDiscountType() {
|
||||
return discountType;
|
||||
}
|
||||
|
||||
public int getOrder() {
|
||||
return order;
|
||||
}
|
||||
|
||||
public int getAccumulativeRecharge() {
|
||||
return accumulativeRecharge;
|
||||
}
|
||||
|
||||
public int[][] getPlayerLevel() {
|
||||
return playerLevel;
|
||||
}
|
||||
|
||||
public int[] getOpenPrivilege() {
|
||||
return openPrivilege;
|
||||
}
|
||||
|
||||
public int getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public String getStartTime() {
|
||||
return startTime;
|
||||
}
|
||||
|
||||
public String getEndtime() {
|
||||
return endtime;
|
||||
}
|
||||
|
||||
public int getContiueDays() {
|
||||
return contiueDays;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setStartTimeLong(long startTimeLong) {
|
||||
this.startTimeLong = startTimeLong;
|
||||
}
|
||||
|
||||
public void setEndTimeLong(long endTimeLong) {
|
||||
this.endTimeLong = endTimeLong;
|
||||
}
|
||||
|
||||
public long getStartTimeLong() {
|
||||
return startTimeLong;
|
||||
}
|
||||
|
||||
public long getEndTimeLong() {
|
||||
return endTimeLong;
|
||||
}
|
||||
public int getLimitShow() {
|
||||
return limitShow;
|
||||
}
|
||||
|
||||
public int getDailyUpdate() {
|
||||
return dailyUpdate;
|
||||
}
|
||||
|
||||
public int[] getPassiveSkill() {
|
||||
return passiveSkill;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getRechargeId() {
|
||||
return rechargeId;
|
||||
}
|
||||
|
||||
public String getRechargeId2() {
|
||||
return rechargeId2;
|
||||
}
|
||||
|
||||
public String getRechargeId3() {
|
||||
return rechargeId3;
|
||||
}
|
||||
|
||||
public int getShowType() {
|
||||
return showType;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue