44323
2023-11-28 fade481769731552d9a16c79c9a5323e6f015b36
cloud-server-competition/src/main/java/com/dsh/competition/model/EditParticipant.java
@@ -23,10 +23,11 @@
    @ApiModelProperty(value = "姓名", dataType = "string", required = false)
    private String name;
    @ApiModelProperty(value = "生日", dataType = "string", required = false)
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date birthday;
    private String birthday;
    @ApiModelProperty(value = "性别(1=男,2=女)", dataType = "int", required = false)
    private Integer gender;
    @ApiModelProperty(value = "身份证号码", dataType = "string", required = false)
    private String idcard;
    @ApiModelProperty(value = "是否为学员1是0不是", dataType = "int", required = false)
    private Integer isStudent;
}