| | |
| | | @Column(columnDefinition="bigint comment '客商ID'") |
| | | private Long busGuestId; |
| | | |
| | | @Schema(description = "收款单位") |
| | | @Column(columnDefinition="VARCHAR(64) comment '收款单位'") |
| | | private String Payee; |
| | | |
| | | @Schema(description = "收款单位ID") |
| | | @Column(columnDefinition="bigint comment '收款单位ID'") |
| | | private Long PayeeCompId; |
| | | |
| | | @Schema(description = "收款日期") |
| | | @Column(columnDefinition="datetime comment '收款日期'") |
| | | private Date paymentTime; |
| | |
| | | @Column(columnDefinition="VARCHAR(64) comment '付款方式'") |
| | | private String payType; |
| | | |
| | | @Schema(description = "合同ID") |
| | | @Column(columnDefinition="bigint comment '合同ID'") |
| | | private Long contractId; |
| | | } |