| | |
| | | @Comment("客商信息") |
| | | public class BusinessCustomer extends BaseModel<BusinessCustomer> { |
| | | |
| | | @Schema(description = "'统一社会信用代码'") |
| | | @Schema(description = "统一社会信用代码") |
| | | @Column(columnDefinition = "VARCHAR(30) comment '统一社会信用代码'") |
| | | private String creditCode; |
| | | |
| | |
| | | @Column(columnDefinition = "VARCHAR(100) comment '企业名称'") |
| | | private String companyName; |
| | | |
| | | @Schema(description = "公司类型") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '公司类型'") |
| | | private String companyType; |
| | | // @Schema(description = "公司类型") |
| | | // @Column(columnDefinition = "VARCHAR(50) comment '公司类型'") |
| | | // private String companyType; |
| | | |
| | | @Schema(description = "法定代表人") |
| | | @Column(columnDefinition = "VARCHAR(20) comment '法定代表人'") |
| | | private String legalPerson; |
| | | |
| | | @Schema(description = "注册资本") |
| | | /* @Schema(description = "注册资本") |
| | | @Column(columnDefinition = "VARCHAR(30) comment '注册资本'") |
| | | private String registeredCapital; |
| | | |
| | |
| | | |
| | | @Schema(description = "签发日期") |
| | | @Column(columnDefinition = "VARCHAR(20) comment '签发日期'") |
| | | private String issueDate; |
| | | private String issueDate;*/ |
| | | |
| | | @Schema(description = "状态") |
| | | /* @Schema(description = "状态") |
| | | @Column(columnDefinition = "VARCHAR(20) default '正常' comment '状态'") |
| | | private String status; |
| | | private String status;*/ |
| | | |
| | | @Schema(description = "行业Id") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '行业'") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '行业Id'") |
| | | private String industryId; |
| | | |
| | | @Schema(description = "行业") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '行业'") |
| | | private String industry; |
| | | |
| | | // 煤炭、有色、黑色、电力、其它、氧化铝、化工、水泥、船运 |
| | | |
| | | @Schema(description = "开户银行") |
| | | @Column(columnDefinition = "VARCHAR(20) comment '开户银行'") |
| | | private String bankName; |
| | | |
| | | @Schema(description = "银行账号") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '银行账号'") |
| | | private String bankAccount; |
| | | |
| | | @Schema(description = "联系电话") |
| | | @Column(columnDefinition = "VARCHAR(20) comment '联系电话'") |
| | | private String contactPhone; |
| | | |
| | | @Schema(description = "邮箱") |
| | | /* @Schema(description = "邮箱") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '邮箱'") |
| | | private String email; |
| | | private String email;*/ |
| | | |
| | | @Schema(description = "省") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '省'") |
| | | private String province; |
| | | |
| | | @Schema(description = "市") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '市'") |
| | | private String city; |
| | | |
| | | @Schema(description = "区") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '区'") |
| | | private String district; |
| | | // @Schema(description = "市") |
| | | // @Column(columnDefinition = "VARCHAR(50) comment '市'") |
| | | // private String city; |
| | | // |
| | | // @Schema(description = "区") |
| | | // @Column(columnDefinition = "VARCHAR(50) comment '区'") |
| | | // private String district; |
| | | |
| | | @Schema(description = "所属区域Id") |
| | | @Column(columnDefinition = "bigint comment '所属区域Id'") |
| | | private Long areaId; |
| | | |
| | | @Schema(description = "所属区域") |
| | | @Column(columnDefinition = "bigint comment '所属区域'") |
| | | private Long areaName; |
| | | |
| | | @Schema(description = "市场类型Id") |
| | | @Column(columnDefinition = "bigint comment '市场类型Id'") |
| | | private Long classId; |
| | | |
| | | @Schema(description = "市场类型") |
| | | @Column(columnDefinition = "bigint comment '市场类型'") |
| | | private Long className; |
| | | |
| | | } |