| | |
| | | @Schema(description = "阶段名称") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '阶段名称'") |
| | | private String scheduleName; |
| | | |
| | | @Schema(description = "是否为BIP同步") |
| | | @Column(columnDefinition="tinyint DEFAULT '0' COMMENT '是否为BIP同步'") |
| | | private Integer isBip; |
| | | |
| | | @Schema(description = "bip收款单id ") |
| | | @Column(columnDefinition="VARCHAR(64) comment 'bip收款单id'") |
| | | private String bipId; |
| | | |
| | | /** |
| | | * 付款方式 0/现汇 1/承兑 数据字典 |
| | | */ |
| | | @Schema(description = "付款方式 ") |
| | | @Column(columnDefinition="int(1) comment '付款方式'") |
| | | private Integer payType; |
| | | |
| | | @Schema(description = "收款单编号") |
| | | @Column(columnDefinition="VARCHAR(64) comment '收款单编号'") |
| | | private String paymentCode; |
| | | |
| | | } |