| | |
| | | */ |
| | | private String createHospitalName; |
| | | /** |
| | | * 医生id |
| | | */ |
| | | private String createDoctorId; /** |
| | | * 医生姓名 |
| | | */ |
| | | private String createDoctorName; |
| | | /** |
| | | * 金额 (单位为分) |
| | | */ |
| | | @NotEmpty(message = "金额 (单位为分)不能为空") |
| | |
| | | */ |
| | | @NotEmpty(message = "关联诊断记录ID不能为空") |
| | | private String diaId; |
| | | |
| | | /** |
| | | * 诊断人姓名 |
| | | */ |
| | | @NotEmpty(message = "关联诊断记录ID不能为空") |
| | | private String diaName; |
| | | /** |
| | | * 孩子的id |
| | | */ |
| | |
| | | */ |
| | | private Boolean type; |
| | | |
| | | private String childName; |
| | | /** |
| | | * 孩子的出生日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "Asia/Shanghai") |
| | | private Date childBirthday; |
| | | /** |
| | | * 孩子的性别 |
| | | */ |
| | | private Integer childSex; |
| | | |
| | | @JsonSerialize( |
| | | using = ToStringSerializer.class |
| | | ) |