| | |
| | | public class PaymentCompetitionVo { |
| | | @ApiModelProperty(value = "赛事id", dataType = "int", required = true) |
| | | private Integer id; |
| | | @ApiModelProperty(value = "参赛人员id,多个分号分隔", dataType = "String", required = true) |
| | | @ApiModelProperty(value = "参赛人员id[{\"id\":123,\"isStudent\":1},{\"id\":222,\"isStudent\":0}]", dataType = "String", required = true) |
| | | private String ids; |
| | | @ApiModelProperty(value = "支付方式(1=微信,2=支付宝,3=余额,4=课时)", dataType = "int", required = true) |
| | | private Integer payType; |
| | | @ApiModelProperty(value = "我的购买课包id") |
| | | private Long coursePaymentId; |
| | | } |