| | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | @Getter |
| | | @Setter |
| | |
| | | @TableField("company_summary") |
| | | private String companySummary; |
| | | |
| | | @ApiModelProperty(value = "企业类型1民营2私营3企事业单位") |
| | | @TableField("company_type") |
| | | private Integer companyType; |
| | | |
| | | @ApiModelProperty(value = "行业") |
| | | @TableField("industry") |
| | | private String industry; |
| | | |
| | | @ApiModelProperty(value = "法人编号") |
| | | @TableField("legal_person_code") |
| | | private String legalPersonCode; |
| | | |
| | | @ApiModelProperty(value = "法人代表") |
| | | @TableField("legal_person") |
| | | private String legalPerson; |
| | | |
| | | @ApiModelProperty(value = "注册资本") |
| | | @TableField("registered_capital") |
| | | private String registeredCapital; |
| | | |
| | | @ApiModelProperty(value = "总办公地址") |
| | | @TableField("office_address") |
| | | private String officeAddress; |
| | | |
| | | @ApiModelProperty(value = "其他分场所地址") |
| | | @TableField("other_address") |
| | | private String otherAddress; |
| | | |
| | | |
| | | @ApiModelProperty(value = "营业执照") |
| | | @TableField("file_path") |
| | | private String filePath; |