| | |
| | | import org.hibernate.annotations.Comment; |
| | | |
| | | /** |
| | | * @author wjli |
| | | * @author |
| | | * @description |
| | | * @date 2026/4/29 10:51 |
| | | **/ |
| | |
| | | // private String companyType; |
| | | |
| | | @Schema(description = "法定代表人") |
| | | @Column(columnDefinition = "VARCHAR(20) comment '法定代表人'") |
| | | @Column(columnDefinition = "VARCHAR(128) comment '法定代表人'") |
| | | private String legalPerson; |
| | | |
| | | /* @Schema(description = "注册资本") |
| | |
| | | @Column(columnDefinition = "VARCHAR(20) comment '成立日期'") |
| | | private String establishDate; |
| | | |
| | | @Schema(description = "注册地址") |
| | | @Column(columnDefinition = "VARCHAR(200) comment '注册地址'") |
| | | private String address; |
| | | |
| | | |
| | | @Schema(description = "经营范围") |
| | | @Column(columnDefinition = "TEXT comment '经营范围'") |
| | |
| | | @Column(columnDefinition = "VARCHAR(20) default '正常' comment '状态'") |
| | | private String status;*/ |
| | | |
| | | @Schema(description = "注册地址") |
| | | @Column(columnDefinition = "VARCHAR(400) comment '注册地址'") |
| | | private String address; |
| | | |
| | | @Schema(description = "行业Id") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '行业Id'") |
| | | private String industryId; |
| | |
| | | |
| | | // 煤炭、有色、黑色、电力、其它、氧化铝、化工、水泥、船运 |
| | | |
| | | @Schema(description = "注册名称") |
| | | @Column(columnDefinition = "VARCHAR(128) comment '注册名称'") |
| | | private String registerName; |
| | | |
| | | @Schema(description = "开户银行") |
| | | @Column(columnDefinition = "VARCHAR(20) comment '开户银行'") |
| | | @Column(columnDefinition = "VARCHAR(255) comment '开户银行'") |
| | | private String bankName; |
| | | |
| | | @Schema(description = "银行账号") |
| | |
| | | private String bankAccount; |
| | | |
| | | @Schema(description = "联系电话") |
| | | @Column(columnDefinition = "VARCHAR(20) comment '联系电话'") |
| | | @Column(columnDefinition = "VARCHAR(40) comment '联系电话'") |
| | | private String contactPhone; |
| | | |
| | | /* @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; |
| | | } |