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.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @date 2023/7/7 14:36
| */
| @Data
| public class EditParticipant {
| @ApiModelProperty(value = "数据id", dataType = "int", required = true)
| private Integer id;
| @ApiModelProperty(value = "身高(CM)", dataType = "int", required = true)
| private Integer height;
| @ApiModelProperty(value = "体重(KG)", dataType = "double", required = true)
| private Double weight;
| @ApiModelProperty(value = "联系电话", dataType = "string", required = false)
| private String phone;
| }
|
|