puzhibing
2023-07-12 aa43a92c7ec9053dbaef92fe5ccb3011b670442c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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,多个分号分隔", dataType = "String", required = true)
    private String ids;
    @ApiModelProperty(value = "支付方式(1=微信,2=支付宝,3=余额,4=课时)", dataType = "int", required = true)
    private Integer payType;
}