2023-10-18 09:01:50 +00:00
|
|
|
package com.yzdx.AiInterviewer.entity;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
@Data
|
|
|
|
@ApiModel("公司主体类")
|
|
|
|
@TableName("company")
|
2023-11-27 08:31:15 +00:00
|
|
|
public class Company extends BaseEntity {
|
2023-10-18 09:01:50 +00:00
|
|
|
@ApiModelProperty("公司id")
|
|
|
|
@TableId(type = IdType.AUTO)
|
|
|
|
private Integer id;
|
2023-11-30 03:16:47 +00:00
|
|
|
@ApiModelProperty("公司简称")
|
2023-10-18 09:01:50 +00:00
|
|
|
private String companyName;
|
2023-11-30 03:16:47 +00:00
|
|
|
@ApiModelProperty("公司全称")
|
|
|
|
private String companyAllName;
|
2023-10-18 09:01:50 +00:00
|
|
|
@ApiModelProperty("公司详情")
|
|
|
|
private String companyDetail;
|
|
|
|
@ApiModelProperty("公司类型")
|
|
|
|
private String type;
|
|
|
|
@ApiModelProperty("公司地址")
|
|
|
|
private String address;
|
2023-11-10 10:28:31 +00:00
|
|
|
@ApiModelProperty("公司详细地址")
|
|
|
|
private String addressDetail;
|
2023-10-18 09:01:50 +00:00
|
|
|
@ApiModelProperty("公司待遇")
|
|
|
|
private String treatment;
|
|
|
|
@ApiModelProperty("法定代表人")
|
|
|
|
private String legalRepresentative;
|
|
|
|
@ApiModelProperty("注册资本")
|
|
|
|
private String registeredCapital;
|
|
|
|
@ApiModelProperty("成立日期")
|
2023-11-16 13:22:51 +00:00
|
|
|
private String established;
|
2023-10-18 09:01:50 +00:00
|
|
|
@ApiModelProperty("统一信用编码")
|
|
|
|
private String creditCode;
|
|
|
|
@ApiModelProperty("公司图片")
|
|
|
|
private String images;
|
|
|
|
@ApiModelProperty("公司使用的登陆编码")
|
|
|
|
private String encoding;
|
2023-11-29 11:23:43 +00:00
|
|
|
@ApiModelProperty("企业人数")
|
|
|
|
private String staffNumber;
|
|
|
|
@ApiModelProperty("公司logo")
|
|
|
|
private String companyLogo;
|
2023-10-18 09:01:50 +00:00
|
|
|
}
|