| | |
| | | /** |
| | | * 拟付日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @Column(name = "planned_payment_date") |
| | | private Date plannedPaymentDate; |
| | | private String plannedPaymentDate; |
| | | |
| | | /** |
| | | * 类别 |
| | |
| | | @Column(name = "category", length = 100) |
| | | private String category; |
| | | |
| | | private String paymentTarget; |
| | | |
| | | private String paymentCount; |
| | | private Integer paymentCount; |
| | | /** |
| | | * 报销人 |
| | | */ |
| | |
| | | /** |
| | | * 实付日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @Column(name = "actual_payment_date") |
| | | private Date actualPaymentDate; |
| | | private String actualPaymentDate; |
| | | |
| | | // 以下为补充字段(如果需要) |
| | | private int row; |