| | |
| | | package com.ruoyi.company.api.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | |
| | | /** 主键 */ |
| | | @TableId |
| | | private Long id; |
| | | /** 企业用户id */ |
| | | @Schema(description = "企业用户id") |
| | | private Long userId; |
| | | |
| | | /** 公司名称 */ |
| | | @Schema(description = "公司名称") |
| | | private String companyName; |
| | | |
| | | /** 统一社会信用代码 */ |
| | | @Schema(description = "统一社会信用代码") |
| | | private String socialCode; |
| | | |
| | | /** 省份代码 */ |
| | | @Schema(description = "省份代码") |
| | | private String provinceCode; |
| | | |
| | | /** 城市代码 */ |
| | | @Schema(description = "城市代码") |
| | | private String cityCode; |
| | | |
| | | /** 区域代码 */ |
| | | @Schema(description = "区域代码") |
| | | private String districtCode; |
| | | |
| | | /**所在区域(省市区)*/ |
| | | @Schema(description = "所在区域(省市区") |
| | | private String area; |
| | | |
| | | /** 经营地址 */ |
| | | @Schema(description = "经营地址") |
| | | private String businessAddress; |
| | | |
| | | /** 身份证正面照片 */ |
| | | @Schema(description = "身份证正面照片") |
| | | private String idCardFrontUrl; |
| | | |
| | | /** 身份证反面照片 */ |
| | | @Schema(description = "身份证反面照片") |
| | | private String idCardBackUrl; |
| | | |
| | | /** 法人姓名 */ |
| | | @Schema(description = "法人姓名") |
| | | private String legalPersonName; |
| | | |
| | | /** 身份证号码 */ |
| | | @Schema(description = "身份证号码") |
| | | private String idCardNumber; |
| | | |
| | | /** 营业执照照片 */ |
| | | @Schema(description = "营业执照照片") |
| | | private String businessLicenseUrl; |
| | | |
| | | /** 资质类目:1-再生资源回收备案资质 2-家电拆解资质 3-报废机动车回收拆解资质 4-危险废物经营许可证 0-其他证书 */ |
| | | @Schema(description = "资质类目:1-再生资源回收备案资质 2-家电拆解资质 3-报废机动车回收拆解资质 4-危险废物经营许可证 0-其他证书") |
| | | private Integer category; |
| | | |
| | | /** 拆解企业资质证书图片地址 */ |
| | | @Schema(description = "拆解企业资质证书图片地址") |
| | | private String certificateUrl; |
| | | |
| | | /** 联系人姓名 */ |
| | | @Schema(description = "联系人姓名") |
| | | private String contactName; |
| | | |
| | | /** 联系人手机号 */ |
| | | @Schema(description = "联系人手机号") |
| | | private String contactPhone; |
| | | |
| | | /** 联系人邮箱 */ |
| | | @Schema(description = "联系人邮箱") |
| | | private String email; |
| | | |
| | | /** 创建时间 */ |
| | | @Schema(description = "创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | /** 更新时间 */ |
| | | @Schema(description = "更新时间") |
| | | private LocalDateTime updateTime; |
| | | |
| | | /** 是否删除 */ |
| | | @TableLogic |
| | | private Boolean isDelete; |
| | | } |