|
@@ -63,6 +63,13 @@ public class SporadicChargeInfo {
|
|
|
@ApiModelProperty(value = "所属乐团名称", required = true)
|
|
|
private String musicGroupName;
|
|
|
|
|
|
+ @ApiModelProperty(value = "缴费最大人数", required = true)
|
|
|
+ private Integer maxNum;
|
|
|
+
|
|
|
+ private Integer paidNum;
|
|
|
+
|
|
|
+ private Integer version;
|
|
|
+
|
|
|
public String getMusicGroupName() {
|
|
|
return musicGroupName;
|
|
|
}
|
|
@@ -230,4 +237,28 @@ public class SporadicChargeInfo {
|
|
|
public void setOrderType(String orderType) {
|
|
|
this.orderType = orderType;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getMaxNum() {
|
|
|
+ return maxNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxNum(Integer maxNum) {
|
|
|
+ this.maxNum = maxNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPaidNum() {
|
|
|
+ return paidNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaidNum(Integer paidNum) {
|
|
|
+ this.paidNum = paidNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getVersion() {
|
|
|
+ return version;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVersion(Integer version) {
|
|
|
+ this.version = version;
|
|
|
+ }
|
|
|
}
|