| | |
| | | /** |
| | | * 第一次打印日期 |
| | | */ |
| | | @Column(name = "first_print_date") |
| | | private Date firstPrintDate; |
| | | @Column(name = "first_print_date", length = 50) |
| | | private String firstPrintDate; |
| | | |
| | | /** |
| | | * 决议编号 |
| | |
| | | /** |
| | | * 打印金额 |
| | | */ |
| | | @Column(name = "print_amount", precision = 18, scale = 2) |
| | | private BigDecimal printAmount; |
| | | @Column(name = "print_amount", length = 50) |
| | | private String printAmount; |
| | | |
| | | |
| | | |
| | |
| | | * 到账日期 |
| | | */ |
| | | @Column(name = "arrival_date") |
| | | private Date arrivalDate; |
| | | private String arrivalDate; |
| | | |
| | | /** |
| | | * 到账金额 |
| | | */ |
| | | @Column(name = "arrival_amount", precision = 18, scale = 2) |
| | | private BigDecimal arrivalAmount; |
| | | private String arrivalAmount; |
| | | |
| | | /** |
| | | * 支取人 |
| | |
| | | * 缺支/欠款(元) |
| | | */ |
| | | @Column(name = "shortage_or_arrears", precision = 18, scale = 2) |
| | | private BigDecimal shortageOrArrears; |
| | | private String shortageOrArrears; |
| | | |
| | | /** |
| | | * 路名 |
| | |
| | | */ |
| | | @Column(name = "owner_address", length = 255) |
| | | private String ownerAddress; |
| | | |
| | | |
| | | @Column(name = "print_count") |
| | | private Integer printCount; |
| | | } |