无关风月
2025-05-08 9486766c806fe1d9e082b2fd02ea1cc558f1b443
cloud-server-competition/src/main/java/com/dsh/competition/model/AddParticipant.java
@@ -16,13 +16,14 @@
public class AddParticipant {
    @ApiModelProperty(value = "姓名", dataType = "string", required = true)
    private String name;
    @ApiModelProperty(value = "头像", dataType = "string", required = true)
    private String headImg;
    @ApiModelProperty(value = "生日", dataType = "string", required = true)
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date birthday;
    private String birthday;
    @ApiModelProperty(value = "性别(1=男,2=女)", dataType = "int", required = true)
    private Integer gender;
    @ApiModelProperty(value = "身高(CM)", dataType = "int", required = true)
    private Integer height;
    private String height;
    @ApiModelProperty(value = "体重(KG)", dataType = "double", required = true)
    private Double weight;
    @ApiModelProperty(value = "联系电话", dataType = "string", required = false)