| | |
| | | public class SaasClientPay { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id",type = IdType.UUID) |
| | | private String id; |
| | | /** |
| | | * 诊断医生所在科室 |
| | |
| | | * 创建医院名称 |
| | | */ |
| | | private String createHospitalName; |
| | | /** |
| | | * 医生id |
| | | */ |
| | | private String createDoctorId; /** |
| | | * 医生姓名 |
| | | */ |
| | | private String createDoctorName; |
| | | /** |
| | | * 金额 (单位为分) |
| | | */ |
| | |
| | | */ |
| | | @NotEmpty(message = "关联诊断记录ID不能为空") |
| | | private String diaId; |
| | | |
| | | /** |
| | | * 诊断人姓名 |
| | | */ |
| | | @NotEmpty(message = "关联诊断记录ID不能为空") |
| | | private String diaName; |
| | | /** |
| | | * 孩子的id |
| | | */ |
| | | @NotEmpty(message = "孩子的id") |
| | | private String childId; |
| | | /** |
| | | * 支付宝交易号 微信支付订单号 |
| | | */ |
| | |
| | | /** |
| | | * 支付给喜高的费用 |
| | | */ |
| | | private String payKidgrow; |
| | | private Integer payKidgrow; |
| | | /** |
| | | * 支付给客户的费用 |
| | | 支付给客户的费用 |
| | | */ |
| | | private String payCustom; |
| | | private Integer payCustom; |
| | | /** |
| | | * 支付状态 |
| | | */ |
| | | private Boolean type; |
| | | |
| | | private String childName; |
| | | /** |
| | | * 孩子的出生日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "Asia/Shanghai") |
| | | private Date childBirthday; |
| | | /** |
| | | * 孩子的性别 |
| | | */ |
| | | private Integer childSex; |
| | | |
| | | @JsonSerialize( |
| | | using = ToStringSerializer.class |
| | | ) |