Browse Source

Merge branch 'err_data_export'

Joburgess 4 years ago
parent
commit
e540c8cf53

+ 3 - 3
mec-biz/src/main/java/com/ym/mec/biz/dal/page/VipGroupActivityQueryInfo.java

@@ -14,7 +14,7 @@ public class VipGroupActivityQueryInfo extends QueryInfo {
     private Boolean enable;
 
     @ApiModelProperty(value = "适用学生类型:-1:所有;0:老用户;1:新用户")
-    private int  applyToStudentType;
+    private Integer  applyToStudentType;
 
     public Boolean getEnable() {
         return enable;
@@ -32,11 +32,11 @@ public class VipGroupActivityQueryInfo extends QueryInfo {
         this.organId = organId;
     }
 
-    public int getApplyToStudentType() {
+    public Integer getApplyToStudentType() {
         return applyToStudentType;
     }
 
-    public void setApplyToStudentType(int applyToStudentType) {
+    public void setApplyToStudentType(Integer applyToStudentType) {
         this.applyToStudentType = applyToStudentType;
     }
 }