| | |
| | | import org.hibernate.annotations.Comment; |
| | | |
| | | /** |
| | | * @author wjli |
| | | * @author |
| | | * @description |
| | | * @date 2026/4/29 10:51 |
| | | **/ |
| | |
| | | private String registerName; |
| | | |
| | | @Schema(description = "开户银行") |
| | | @Column(columnDefinition = "VARCHAR(20) comment '开户银行'") |
| | | @Column(columnDefinition = "VARCHAR(255) comment '开户银行'") |
| | | private String bankName; |
| | | |
| | | @Schema(description = "银行账号") |
| | |
| | | @Column(columnDefinition = "bigint comment '销售模式'") |
| | | private Long salesModel; |
| | | |
| | | @Schema(description = "erp企业名称") |
| | | @Column(columnDefinition = "VARCHAR(128) comment 'erp企业名称'") |
| | | private String erpCompanyName; |
| | | |
| | | @Schema(description = "erp企业编码") |
| | | @Column(columnDefinition = "VARCHAR(64) comment 'erp企业编码'") |
| | | private String erpCompanyCode; |
| | | } |