1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| package com.dsh.account.feignclient.competition.model;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * @author zhibing.pu
| * @date 2023/7/7 14:48
| */
| @Data
| public class SaveParticipant {
| /**
| * 用户id
| */
| private Integer appUserId;
| /**
| * 姓名
| */
| private String name;
| /**
| * 生日
| */
| @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
| private Date birthday;
| /**
| * 性别(1=男,2=女)
| */
| private Integer gender;
| /**
| * 身高(CM)
| */
| private Integer height;
| /**
| * 体重(KG)
| */
| private Double weight;
| /**
| * 联系电话
| */
| private String phone;
| /**
| * 身份证号码
| */
| private String idcard;
| }
|
|