1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.dsh.competition.model;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @date 2023/7/10 11:23
| */
| @Data
| @ApiModel
| public class PaymentCompetitionVo {
| @ApiModelProperty(value = "赛事id", dataType = "int", required = true)
| private Integer id;
| @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;
| }
|
|