| | |
| | | private Date tranDate; |
| | | |
| | | @Schema(description = "交易金额") |
| | | @Column(columnDefinition = "decimal(10,2) comment '交易金额'") |
| | | @Column(columnDefinition = "decimal(14,2) comment '交易金额'") |
| | | private BigDecimal tranAmount; |
| | | |
| | | @Schema(description = "数据ID") |
| | |
| | | @Schema(description = "合同ID") |
| | | @Column(columnDefinition="bigint comment '合同ID'") |
| | | private Long contractId; |
| | | |
| | | @Schema(description = "合同确认金额") |
| | | @Column(columnDefinition = "decimal(14,2) default 0.0 comment '合同确认金额'") |
| | | private BigDecimal confirmAmount; |
| | | |
| | | @Schema(description = "交易说明") |
| | | @Column(columnDefinition="VARCHAR(255) comment '交易说明'") |
| | | private String remark; |
| | | |
| | | } |