|
@@ -1,5 +1,6 @@
|
|
package com.yonge.cooleshow.biz.dal.dto.search;
|
|
package com.yonge.cooleshow.biz.dal.dto.search;
|
|
|
|
|
|
|
|
+import com.yonge.cooleshow.biz.dal.enums.EVipType;
|
|
import com.yonge.toolset.base.page.QueryInfo;
|
|
import com.yonge.toolset.base.page.QueryInfo;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -18,7 +19,32 @@ public class MemberPriceSettingsSearch extends QueryInfo{
|
|
@ApiModelProperty("活动id")
|
|
@ApiModelProperty("活动id")
|
|
private Long activityId;
|
|
private Long activityId;
|
|
|
|
|
|
- public Long getActivityId() {
|
|
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("状态")
|
|
|
|
+ private Boolean status;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("会员类型 VIP SVIP")
|
|
|
|
+ private EVipType vipType;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public Boolean getStatus() {
|
|
|
|
+ return status;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStatus(Boolean status) {
|
|
|
|
+ this.status = status;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public EVipType getVipType() {
|
|
|
|
+ return vipType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setVipType(EVipType vipType) {
|
|
|
|
+ this.vipType = vipType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getActivityId() {
|
|
return activityId;
|
|
return activityId;
|
|
}
|
|
}
|
|
|
|
|