|
@@ -1,8 +1,13 @@
|
|
|
package com.ym.mec.biz.dal.entity;
|
|
|
|
|
|
-import com.ym.mec.biz.dal.enums.VipGroupActivityTypeEnum;
|
|
|
+import com.ym.mec.biz.dal.enums.PeriodEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
-import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+import static com.ym.mec.biz.dal.enums.PeriodEnum.DAY;
|
|
|
+import static com.ym.mec.biz.dal.enums.PeriodEnum.MONTH;
|
|
|
|
|
|
/**
|
|
|
* 对应数据库表(vip_group_activity):
|
|
@@ -15,7 +20,16 @@ public class VipGroupActivity {
|
|
|
@ApiModelProperty(value = "活动名称")
|
|
|
private String name;
|
|
|
|
|
|
- @ApiModelProperty(value = "活动描述\n")
|
|
|
+ @ApiModelProperty(value = "活动类型,课程或者会员,0课程,1会员")
|
|
|
+ private Integer activityType = 0;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "单节课时长")
|
|
|
+ private Integer singleCourseTime = 45;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "单节课时长")
|
|
|
+ private Integer giveSingleCourseTime = 45;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动描述")
|
|
|
private String description;
|
|
|
|
|
|
@ApiModelProperty(value = "课程形式")
|
|
@@ -36,26 +50,50 @@ public class VipGroupActivity {
|
|
|
@ApiModelProperty(value = "可排课截至时间")
|
|
|
private java.util.Date coursesEndTime;
|
|
|
|
|
|
- @ApiModelProperty(value = "活动类型(基础活动、折扣、赠送课时)")
|
|
|
- private VipGroupActivityTypeEnum type;
|
|
|
+// @ApiModelProperty(value = "活动类型(基础活动、折扣、赠送课时)")
|
|
|
+// private VipGroupActivityTypeEnum type;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "折扣)")
|
|
|
+ private BigDecimal discount = new BigDecimal(100);
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "满赠达标课时:-1:没有满赠)")
|
|
|
+ private Integer fullMinusCourseTimes = -1;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "赠课类型")
|
|
|
+ private String giveCourseType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "课类型")
|
|
|
+ private String courseType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "赠课形式")
|
|
|
+ private String giveCategoryId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "赠课形式")
|
|
|
+ private String giveCategoryName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "人数")
|
|
|
+ private Integer giveCategoryNum;
|
|
|
|
|
|
- @ApiModelProperty(value = "活动变量1")
|
|
|
- private String attribute1;
|
|
|
+ @ApiModelProperty(value = "赠课数量")
|
|
|
+ private Integer giveCourseNum = 0;
|
|
|
|
|
|
- @ApiModelProperty(value = "活动变量2")
|
|
|
- private String attribute2;
|
|
|
+ @ApiModelProperty(value = "会员编号")
|
|
|
+ private Integer memberRankId = 1;
|
|
|
|
|
|
- @ApiModelProperty(value = "活动变量3")
|
|
|
- private String attribute3;
|
|
|
+ @ApiModelProperty(value = "会员时长")
|
|
|
+ private Integer memberTime = 0;
|
|
|
|
|
|
- @ApiModelProperty(value = "薪水只读标识(1-只读 0-可写)")
|
|
|
- private String salaryReadonlyFlag;
|
|
|
+ @ApiModelProperty(value = "赠送会员编号")
|
|
|
+ private Integer giveMemberRankId = 1;
|
|
|
|
|
|
- @ApiModelProperty(value = "单节课程费用只读标识")
|
|
|
- private String paymentReadonlyFlag;
|
|
|
+ @ApiModelProperty(value = "赠送会员时长")
|
|
|
+ private Integer giveMemberTime = 0;
|
|
|
|
|
|
- @ApiModelProperty(value = "赠送课时支付薪水标识(1-计课酬 0-不计课酬)")
|
|
|
- private String giveClassPaySalaryFlag;
|
|
|
+ @ApiModelProperty(value = "赠送抽奖次数")
|
|
|
+ private Integer givePrizeNum = 0;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否充值到余额")
|
|
|
+ private boolean isPayToBalance = true;
|
|
|
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
private java.util.Date createTime;
|
|
@@ -68,249 +106,337 @@ public class VipGroupActivity {
|
|
|
|
|
|
private String vipGroupCategoryNames;
|
|
|
|
|
|
+ @ApiModelProperty(value = "学员数量")
|
|
|
+ private Integer vipGroupCategoryNum;
|
|
|
+
|
|
|
@ApiModelProperty(value = "是否删除")
|
|
|
private Boolean delFlag = false;
|
|
|
|
|
|
@ApiModelProperty(value = "是否可用")
|
|
|
- private Integer enable;
|
|
|
+ private Boolean enable = false;
|
|
|
|
|
|
@ApiModelProperty(value = "线上课是否参与梯度奖励")
|
|
|
- private Integer onlineClassJoinGradientRewards;
|
|
|
+ private Integer onlineClassJoinGradientRewards = 0;
|
|
|
|
|
|
@ApiModelProperty(value = "线下课是否参与梯度奖励")
|
|
|
- private Integer offlineClassJoinGradientRewards;
|
|
|
+ private Integer offlineClassJoinGradientRewards = 0;
|
|
|
|
|
|
@ApiModelProperty(value = "最少课程数量")
|
|
|
- private Integer minCourseNum;
|
|
|
+ private Integer minCourseNum = -1;
|
|
|
|
|
|
@ApiModelProperty(value = "最多可排课数量")
|
|
|
- private Integer maxCourseNum;
|
|
|
+ private Integer maxCourseNum = -1;
|
|
|
|
|
|
- @ApiModelProperty(value = "每位学员最大使用次数")
|
|
|
- private Integer studentMaxUsedTimes;
|
|
|
+ @ApiModelProperty(value = "每位学员最大购买次数")
|
|
|
+ private Integer studentMaxUsedTimes = -1;
|
|
|
|
|
|
- @ApiModelProperty(value = "适用学生类型:-1:所有;0:老用户;1:新用户")
|
|
|
- private Integer applyToStudentType = -1;
|
|
|
+ @ApiModelProperty(value = "适用学生类型:-1:所有;0:老用户;1:新用户,2会员,3非会员")
|
|
|
+ private String applyToStudentType;
|
|
|
|
|
|
- @ApiModelProperty(value = "课程可调整方向:0双向可调,1禁止线上到线下,2禁止线下到线上,3双向不可调")
|
|
|
- private Integer allowOnlineToOffline = 0;
|
|
|
+ @ApiModelProperty(value = "课程可调整方向:1不限制,0线上不可到线下,2禁止线下到线上,3双向不可调")
|
|
|
+ private Integer allowOnlineToOffline = 1;
|
|
|
|
|
|
- public Integer getAllowOnlineToOffline() {
|
|
|
- return allowOnlineToOffline;
|
|
|
- }
|
|
|
+ @ApiModelProperty(value = "赠送课程可调整方向:1不限制,0线上不可到线下,2禁止线下到线上,3双向不可调")
|
|
|
+ private Integer giveAllowOnlineToOffline = 1;
|
|
|
|
|
|
- public void setAllowOnlineToOffline(Integer allowOnlineToOffline) {
|
|
|
- this.allowOnlineToOffline = allowOnlineToOffline;
|
|
|
+ @ApiModelProperty(value = "-1:所有;0:线上;1:线下")
|
|
|
+ private Integer teachMode = -1;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "-1:所有;0:线上;1:线下")
|
|
|
+ private Integer giveTeachMode = -1;
|
|
|
+
|
|
|
+ private PeriodEnum periodEnum = MONTH;
|
|
|
+
|
|
|
+ private PeriodEnum givePeriodEnum = DAY;
|
|
|
+
|
|
|
+ private String status = "DRAFT";
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动价格")
|
|
|
+ private BigDecimal marketPrice = BigDecimal.ZERO;
|
|
|
+
|
|
|
+ //用于标记活动类型,购买的活动类型1、1v1 20节,2、1v1 40节,3、1v2 20节,4、1v2 40节,5、乐理课
|
|
|
+ private Integer code;
|
|
|
+
|
|
|
+ public Integer getCode() {
|
|
|
+ return code;
|
|
|
}
|
|
|
|
|
|
- public Integer getApplyToStudentType() {
|
|
|
- return applyToStudentType;
|
|
|
+ public void setCode(Integer code) {
|
|
|
+ this.code = code;
|
|
|
}
|
|
|
|
|
|
- public void setApplyToStudentType(Integer applyToStudentType) {
|
|
|
- this.applyToStudentType = applyToStudentType;
|
|
|
+ public Integer getGivePrizeNum() {
|
|
|
+ return givePrizeNum;
|
|
|
}
|
|
|
|
|
|
- public Integer getMinCourseNum() {
|
|
|
- return minCourseNum;
|
|
|
+ public void setGivePrizeNum(Integer givePrizeNum) {
|
|
|
+ this.givePrizeNum = givePrizeNum;
|
|
|
}
|
|
|
|
|
|
- public void setMinCourseNum(Integer minCourseNum) {
|
|
|
- this.minCourseNum = minCourseNum;
|
|
|
+ public Integer getGiveAllowOnlineToOffline() {
|
|
|
+ return giveAllowOnlineToOffline;
|
|
|
}
|
|
|
|
|
|
- public Integer getMaxCourseNum() {
|
|
|
- return maxCourseNum;
|
|
|
+ public void setGiveAllowOnlineToOffline(Integer giveAllowOnlineToOffline) {
|
|
|
+ this.giveAllowOnlineToOffline = giveAllowOnlineToOffline;
|
|
|
}
|
|
|
|
|
|
- public void setMaxCourseNum(Integer maxCourseNum) {
|
|
|
- this.maxCourseNum = maxCourseNum;
|
|
|
+ public BigDecimal getMarketPrice() {
|
|
|
+ return marketPrice;
|
|
|
}
|
|
|
|
|
|
- public Integer getOnlineClassJoinGradientRewards() {
|
|
|
- return onlineClassJoinGradientRewards;
|
|
|
+ public void setMarketPrice(BigDecimal marketPrice) {
|
|
|
+ this.marketPrice = marketPrice;
|
|
|
}
|
|
|
|
|
|
- public void setOnlineClassJoinGradientRewards(Integer onlineClassJoinGradientRewards) {
|
|
|
- this.onlineClassJoinGradientRewards = onlineClassJoinGradientRewards;
|
|
|
+ public Integer getGiveCategoryNum() {
|
|
|
+ return giveCategoryNum;
|
|
|
}
|
|
|
|
|
|
- public Integer getOfflineClassJoinGradientRewards() {
|
|
|
- return offlineClassJoinGradientRewards;
|
|
|
+ public void setGiveCategoryNum(Integer giveCategoryNum) {
|
|
|
+ this.giveCategoryNum = giveCategoryNum;
|
|
|
}
|
|
|
|
|
|
- public void setOfflineClassJoinGradientRewards(Integer offlineClassJoinGradientRewards) {
|
|
|
- this.offlineClassJoinGradientRewards = offlineClassJoinGradientRewards;
|
|
|
+ public Integer getVipGroupCategoryNum() {
|
|
|
+ return vipGroupCategoryNum;
|
|
|
}
|
|
|
|
|
|
- public String getPaymentReadonlyFlag() {
|
|
|
- return paymentReadonlyFlag;
|
|
|
+ public void setVipGroupCategoryNum(Integer vipGroupCategoryNum) {
|
|
|
+ this.vipGroupCategoryNum = vipGroupCategoryNum;
|
|
|
}
|
|
|
|
|
|
- public void setPaymentReadonlyFlag(String paymentReadonlyFlag) {
|
|
|
- this.paymentReadonlyFlag = paymentReadonlyFlag;
|
|
|
+ public String getGiveCategoryName() {
|
|
|
+ return giveCategoryName;
|
|
|
}
|
|
|
|
|
|
- public Integer getEnable() {
|
|
|
- return enable;
|
|
|
+ public void setGiveCategoryName(String giveCategoryName) {
|
|
|
+ this.giveCategoryName = giveCategoryName;
|
|
|
}
|
|
|
|
|
|
- public void setEnable(Integer enable) {
|
|
|
- this.enable = enable;
|
|
|
+ public String getStatus() {
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
- public String getVipGroupCategoryNames() {
|
|
|
- return vipGroupCategoryNames;
|
|
|
+ public void setStatus(String status) {
|
|
|
+ this.status = status;
|
|
|
}
|
|
|
|
|
|
- public void setVipGroupCategoryNames(String vipGroupCategoryNames) {
|
|
|
- this.vipGroupCategoryNames = vipGroupCategoryNames;
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
}
|
|
|
|
|
|
- public void setId(Integer id){
|
|
|
+ public void setId(Integer id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
-
|
|
|
- public Integer getId(){
|
|
|
- return this.id;
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
}
|
|
|
-
|
|
|
- public void setName(String name){
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
-
|
|
|
- public String getName(){
|
|
|
- return this.name;
|
|
|
+
|
|
|
+ public Integer getActivityType() {
|
|
|
+ return activityType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActivityType(Integer activityType) {
|
|
|
+ this.activityType = activityType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSingleCourseTime() {
|
|
|
+ return singleCourseTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSingleCourseTime(Integer singleCourseTime) {
|
|
|
+ this.singleCourseTime = singleCourseTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setDescription(String description){
|
|
|
+
|
|
|
+ public Integer getGiveSingleCourseTime() {
|
|
|
+ return giveSingleCourseTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGiveSingleCourseTime(Integer giveSingleCourseTime) {
|
|
|
+ this.giveSingleCourseTime = giveSingleCourseTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDescription() {
|
|
|
+ return description;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDescription(String description) {
|
|
|
this.description = description;
|
|
|
}
|
|
|
-
|
|
|
- public String getDescription(){
|
|
|
- return this.description;
|
|
|
+
|
|
|
+ public String getVipGroupCategoryIdList() {
|
|
|
+ return vipGroupCategoryIdList;
|
|
|
}
|
|
|
-
|
|
|
- public void setVipGroupCategoryIdList(String vipGroupCategoryIdList){
|
|
|
+
|
|
|
+ public void setVipGroupCategoryIdList(String vipGroupCategoryIdList) {
|
|
|
this.vipGroupCategoryIdList = vipGroupCategoryIdList;
|
|
|
}
|
|
|
-
|
|
|
- public String getVipGroupCategoryIdList(){
|
|
|
- return this.vipGroupCategoryIdList;
|
|
|
+
|
|
|
+ public Date getStartTime() {
|
|
|
+ return startTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setStartTime(java.util.Date startTime){
|
|
|
+
|
|
|
+ public void setStartTime(Date startTime) {
|
|
|
this.startTime = startTime;
|
|
|
}
|
|
|
-
|
|
|
- public java.util.Date getStartTime(){
|
|
|
- return this.startTime;
|
|
|
+
|
|
|
+ public Date getEndTime() {
|
|
|
+ return endTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setEndTime(java.util.Date endTime){
|
|
|
+
|
|
|
+ public void setEndTime(Date endTime) {
|
|
|
this.endTime = endTime;
|
|
|
}
|
|
|
-
|
|
|
- public java.util.Date getEndTime(){
|
|
|
- return this.endTime;
|
|
|
+
|
|
|
+ public String getOrganId() {
|
|
|
+ return organId;
|
|
|
}
|
|
|
-
|
|
|
- public void setOrganId(String organId){
|
|
|
+
|
|
|
+ public void setOrganId(String organId) {
|
|
|
this.organId = organId;
|
|
|
}
|
|
|
-
|
|
|
- public String getOrganId(){
|
|
|
- return this.organId;
|
|
|
+
|
|
|
+ public Date getCoursesStartTime() {
|
|
|
+ return coursesStartTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setCoursesStartTime(java.util.Date coursesStartTime){
|
|
|
+
|
|
|
+ public void setCoursesStartTime(Date coursesStartTime) {
|
|
|
this.coursesStartTime = coursesStartTime;
|
|
|
}
|
|
|
-
|
|
|
- public java.util.Date getCoursesStartTime(){
|
|
|
- return this.coursesStartTime;
|
|
|
+
|
|
|
+ public Date getCoursesEndTime() {
|
|
|
+ return coursesEndTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setCoursesEndTime(java.util.Date coursesEndTime){
|
|
|
+
|
|
|
+ public void setCoursesEndTime(Date coursesEndTime) {
|
|
|
this.coursesEndTime = coursesEndTime;
|
|
|
}
|
|
|
-
|
|
|
- public java.util.Date getCoursesEndTime(){
|
|
|
- return this.coursesEndTime;
|
|
|
+
|
|
|
+ public BigDecimal getDiscount() {
|
|
|
+ return discount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDiscount(BigDecimal discount) {
|
|
|
+ this.discount = discount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getFullMinusCourseTimes() {
|
|
|
+ return fullMinusCourseTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFullMinusCourseTimes(Integer fullMinusCourseTimes) {
|
|
|
+ this.fullMinusCourseTimes = fullMinusCourseTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGiveCourseType() {
|
|
|
+ return giveCourseType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGiveCourseType(String giveCourseType) {
|
|
|
+ this.giveCourseType = giveCourseType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCourseType() {
|
|
|
+ return courseType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseType(String courseType) {
|
|
|
+ this.courseType = courseType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGiveCategoryId() {
|
|
|
+ return giveCategoryId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGiveCategoryId(String giveCategoryId) {
|
|
|
+ this.giveCategoryId = giveCategoryId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getGiveCourseNum() {
|
|
|
+ return giveCourseNum;
|
|
|
}
|
|
|
|
|
|
- public VipGroupActivityTypeEnum getType() {
|
|
|
- return type;
|
|
|
+ public void setGiveCourseNum(Integer giveCourseNum) {
|
|
|
+ this.giveCourseNum = giveCourseNum;
|
|
|
}
|
|
|
|
|
|
- public void setType(VipGroupActivityTypeEnum type) {
|
|
|
- this.type = type;
|
|
|
+ public Integer getMemberRankId() {
|
|
|
+ return memberRankId;
|
|
|
}
|
|
|
|
|
|
- public void setAttribute1(String attribute1){
|
|
|
- this.attribute1 = attribute1;
|
|
|
+ public void setMemberRankId(Integer memberRankId) {
|
|
|
+ this.memberRankId = memberRankId;
|
|
|
}
|
|
|
-
|
|
|
- public String getAttribute1(){
|
|
|
- return this.attribute1;
|
|
|
+
|
|
|
+ public Integer getMemberTime() {
|
|
|
+ return memberTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setAttribute2(String attribute2){
|
|
|
- this.attribute2 = attribute2;
|
|
|
+
|
|
|
+ public void setMemberTime(Integer memberTime) {
|
|
|
+ this.memberTime = memberTime;
|
|
|
}
|
|
|
-
|
|
|
- public String getAttribute2(){
|
|
|
- return this.attribute2;
|
|
|
+
|
|
|
+ public Integer getGiveMemberRankId() {
|
|
|
+ return giveMemberRankId;
|
|
|
}
|
|
|
-
|
|
|
- public void setAttribute3(String attribute3){
|
|
|
- this.attribute3 = attribute3;
|
|
|
+
|
|
|
+ public void setGiveMemberRankId(Integer giveMemberRankId) {
|
|
|
+ this.giveMemberRankId = giveMemberRankId;
|
|
|
}
|
|
|
-
|
|
|
- public String getAttribute3(){
|
|
|
- return this.attribute3;
|
|
|
+
|
|
|
+ public Integer getGiveMemberTime() {
|
|
|
+ return giveMemberTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setSalaryReadonlyFlag(String salaryReadonlyFlag){
|
|
|
- this.salaryReadonlyFlag = salaryReadonlyFlag;
|
|
|
+
|
|
|
+ public void setGiveMemberTime(Integer giveMemberTime) {
|
|
|
+ this.giveMemberTime = giveMemberTime;
|
|
|
}
|
|
|
-
|
|
|
- public String getSalaryReadonlyFlag(){
|
|
|
- return this.salaryReadonlyFlag;
|
|
|
+
|
|
|
+ public boolean isPayToBalance() {
|
|
|
+ return isPayToBalance;
|
|
|
}
|
|
|
-
|
|
|
- public void setGiveClassPaySalaryFlag(String giveClassPaySalaryFlag){
|
|
|
- this.giveClassPaySalaryFlag = giveClassPaySalaryFlag;
|
|
|
+
|
|
|
+ public void setPayToBalance(boolean payToBalance) {
|
|
|
+ isPayToBalance = payToBalance;
|
|
|
}
|
|
|
-
|
|
|
- public String getGiveClassPaySalaryFlag(){
|
|
|
- return this.giveClassPaySalaryFlag;
|
|
|
+
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setCreateTime(java.util.Date createTime){
|
|
|
+
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
-
|
|
|
- public java.util.Date getCreateTime(){
|
|
|
- return this.createTime;
|
|
|
+
|
|
|
+ public Date getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
}
|
|
|
-
|
|
|
- public void setUpdateTime(java.util.Date updateTime){
|
|
|
+
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
-
|
|
|
- public java.util.Date getUpdateTime(){
|
|
|
- return this.updateTime;
|
|
|
+
|
|
|
+ public String getSalarySettlementJson() {
|
|
|
+ return salarySettlementJson;
|
|
|
}
|
|
|
-
|
|
|
- public void setSalarySettlementJson(String salarySettlementJson){
|
|
|
+
|
|
|
+ public void setSalarySettlementJson(String salarySettlementJson) {
|
|
|
this.salarySettlementJson = salarySettlementJson;
|
|
|
}
|
|
|
-
|
|
|
- public String getSalarySettlementJson(){
|
|
|
- return this.salarySettlementJson;
|
|
|
+
|
|
|
+ public String getVipGroupCategoryNames() {
|
|
|
+ return vipGroupCategoryNames;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ public void setVipGroupCategoryNames(String vipGroupCategoryNames) {
|
|
|
+ this.vipGroupCategoryNames = vipGroupCategoryNames;
|
|
|
+ }
|
|
|
+
|
|
|
public Boolean getDelFlag() {
|
|
|
return delFlag;
|
|
|
}
|
|
@@ -319,6 +445,46 @@ public class VipGroupActivity {
|
|
|
this.delFlag = delFlag;
|
|
|
}
|
|
|
|
|
|
+ public Boolean getEnable() {
|
|
|
+ return enable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnable(Boolean enable) {
|
|
|
+ this.enable = enable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOnlineClassJoinGradientRewards() {
|
|
|
+ return onlineClassJoinGradientRewards;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOnlineClassJoinGradientRewards(Integer onlineClassJoinGradientRewards) {
|
|
|
+ this.onlineClassJoinGradientRewards = onlineClassJoinGradientRewards;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOfflineClassJoinGradientRewards() {
|
|
|
+ return offlineClassJoinGradientRewards;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOfflineClassJoinGradientRewards(Integer offlineClassJoinGradientRewards) {
|
|
|
+ this.offlineClassJoinGradientRewards = offlineClassJoinGradientRewards;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMinCourseNum() {
|
|
|
+ return minCourseNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMinCourseNum(Integer minCourseNum) {
|
|
|
+ this.minCourseNum = minCourseNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMaxCourseNum() {
|
|
|
+ return maxCourseNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxCourseNum(Integer maxCourseNum) {
|
|
|
+ this.maxCourseNum = maxCourseNum;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getStudentMaxUsedTimes() {
|
|
|
return studentMaxUsedTimes;
|
|
|
}
|
|
@@ -327,9 +493,51 @@ public class VipGroupActivity {
|
|
|
this.studentMaxUsedTimes = studentMaxUsedTimes;
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return ToStringBuilder.reflectionToString(this);
|
|
|
+ public String getApplyToStudentType() {
|
|
|
+ return applyToStudentType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setApplyToStudentType(String applyToStudentType) {
|
|
|
+ this.applyToStudentType = applyToStudentType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getAllowOnlineToOffline() {
|
|
|
+ return allowOnlineToOffline;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAllowOnlineToOffline(Integer allowOnlineToOffline) {
|
|
|
+ this.allowOnlineToOffline = allowOnlineToOffline;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTeachMode() {
|
|
|
+ return teachMode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeachMode(Integer teachMode) {
|
|
|
+ this.teachMode = teachMode;
|
|
|
}
|
|
|
|
|
|
-}
|
|
|
+ public Integer getGiveTeachMode() {
|
|
|
+ return giveTeachMode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGiveTeachMode(Integer giveTeachMode) {
|
|
|
+ this.giveTeachMode = giveTeachMode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public PeriodEnum getPeriodEnum() {
|
|
|
+ return periodEnum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPeriodEnum(PeriodEnum periodEnum) {
|
|
|
+ this.periodEnum = periodEnum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public PeriodEnum getGivePeriodEnum() {
|
|
|
+ return givePeriodEnum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGivePeriodEnum(PeriodEnum givePeriodEnum) {
|
|
|
+ this.givePeriodEnum = givePeriodEnum;
|
|
|
+ }
|
|
|
+}
|