diff --git a/tablemanager/src/main/java/config/SGodSacrificeConfig.java b/tablemanager/src/main/java/config/SGodSacrificeConfig.java new file mode 100644 index 000000000..9f865679e --- /dev/null +++ b/tablemanager/src/main/java/config/SGodSacrificeConfig.java @@ -0,0 +1,67 @@ +package config; + +import manager.STableManager; +import manager.Table; + +import java.util.Map; + +@Table(name ="GodSacrificeConfig") +public class SGodSacrificeConfig implements BaseConfig { + + private int id; + + private int activityId; + + private int rewardType; + + private int minRank; + + private int maxRank; + + private int[][] rankingReward; + + private int basLineScore; + + private int basLineRewardId; + + + @Override + public void init() throws Exception { + + } + + + public int getId() { + return id; + } + + public int getActivityId() { + return activityId; + } + + public int getRewardType() { + return rewardType; + } + + public int getMinRank() { + return minRank; + } + + public int getMaxRank() { + return maxRank; + } + + public int[][] getRankingReward() { + return rankingReward; + } + + public int getBasLineScore() { + return basLineScore; + } + + public int getBasLineRewardId() { + return basLineRewardId; + } + + +} \ No newline at end of file diff --git a/tablemanager/src/main/java/config/SGodSacrificeSetting.java b/tablemanager/src/main/java/config/SGodSacrificeSetting.java new file mode 100644 index 000000000..7c06bf84a --- /dev/null +++ b/tablemanager/src/main/java/config/SGodSacrificeSetting.java @@ -0,0 +1,91 @@ +package config; + +import manager.STableManager; +import manager.Table; + +import java.util.Map; + +@Table(name ="GodSacrificeSetting") +public class SGodSacrificeSetting implements BaseConfig { + + private int id; + + private int activityId; + + private int[] activityItems; + + private int activityMoney; + + private int[] rankType; + + private int[] rewardItemChangRate; + + private int qAId; + + private int itemDelete; + + private int timeRewardNum; + + private int[] timePointList; + + private int timeRewardGroup; + + private int lastTime; + + + @Override + public void init() throws Exception { + + } + + + public int getId() { + return id; + } + + public int getActivityId() { + return activityId; + } + + public int[] getActivityItems() { + return activityItems; + } + + public int getActivityMoney() { + return activityMoney; + } + + public int[] getRankType() { + return rankType; + } + + public int[] getRewardItemChangRate() { + return rewardItemChangRate; + } + + public int getQAId() { + return qAId; + } + + public int getItemDelete() { + return itemDelete; + } + + public int getTimeRewardNum() { + return timeRewardNum; + } + + public int[] getTimePointList() { + return timePointList; + } + + public int getTimeRewardGroup() { + return timeRewardGroup; + } + + public int getLastTime() { + return lastTime; + } + + +} \ No newline at end of file