|
@@ -29,19 +29,19 @@ public class GoodsQueryInfo extends QueryInfo {
|
|
|
private Integer groupGoods;
|
|
|
|
|
|
@ApiModelProperty(value = "客户端展示分部")
|
|
|
- private Integer studentShowOrganId;
|
|
|
+ private String studentShowOrganId;
|
|
|
|
|
|
@ApiModelProperty(value = "教务端展示分部")
|
|
|
- private Integer educationShowOrganId;
|
|
|
+ private String educationShowOrganId;
|
|
|
|
|
|
@ApiModelProperty(value = "课程收费团展示分部")
|
|
|
- private Integer courseFeeShowOrganId;
|
|
|
+ private String courseFeeShowOrganId;
|
|
|
|
|
|
@ApiModelProperty(value = "会员收费团展示分部")
|
|
|
- private Integer memberFeeShowOrganId;
|
|
|
+ private String memberFeeShowOrganId;
|
|
|
|
|
|
@ApiModelProperty(value = "乐器置换展示分部")
|
|
|
- private Integer replacementShowOrganId;
|
|
|
+ private String replacementShowOrganId;
|
|
|
|
|
|
@ApiModelProperty(value = "分部")
|
|
|
private String organId;
|
|
@@ -67,43 +67,43 @@ public class GoodsQueryInfo extends QueryInfo {
|
|
|
this.organId = organId;
|
|
|
}
|
|
|
|
|
|
- public Integer getStudentShowOrganId() {
|
|
|
+ public String getStudentShowOrganId() {
|
|
|
return studentShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public void setStudentShowOrganId(Integer studentShowOrganId) {
|
|
|
+ public void setStudentShowOrganId(String studentShowOrganId) {
|
|
|
this.studentShowOrganId = studentShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public Integer getEducationShowOrganId() {
|
|
|
+ public String getEducationShowOrganId() {
|
|
|
return educationShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public void setEducationShowOrganId(Integer educationShowOrganId) {
|
|
|
+ public void setEducationShowOrganId(String educationShowOrganId) {
|
|
|
this.educationShowOrganId = educationShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public Integer getCourseFeeShowOrganId() {
|
|
|
+ public String getCourseFeeShowOrganId() {
|
|
|
return courseFeeShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public void setCourseFeeShowOrganId(Integer courseFeeShowOrganId) {
|
|
|
+ public void setCourseFeeShowOrganId(String courseFeeShowOrganId) {
|
|
|
this.courseFeeShowOrganId = courseFeeShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public Integer getMemberFeeShowOrganId() {
|
|
|
+ public String getMemberFeeShowOrganId() {
|
|
|
return memberFeeShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public void setMemberFeeShowOrganId(Integer memberFeeShowOrganId) {
|
|
|
+ public void setMemberFeeShowOrganId(String memberFeeShowOrganId) {
|
|
|
this.memberFeeShowOrganId = memberFeeShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public Integer getReplacementShowOrganId() {
|
|
|
+ public String getReplacementShowOrganId() {
|
|
|
return replacementShowOrganId;
|
|
|
}
|
|
|
|
|
|
- public void setReplacementShowOrganId(Integer replacementShowOrganId) {
|
|
|
+ public void setReplacementShowOrganId(String replacementShowOrganId) {
|
|
|
this.replacementShowOrganId = replacementShowOrganId;
|
|
|
}
|
|
|
|