企业表-添加法人姓名、法人身份证、法人联系方式

This commit is contained in:
sh
2025-10-22 11:29:51 +08:00
parent 8c5ec3e0b3
commit aa55276a81
2 changed files with 14 additions and 2 deletions

View File

@@ -34,11 +34,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="enterpriseType" column="enterprise_type" /> <result property="enterpriseType" column="enterprise_type" />
<result property="isImpCompany" column="is_imp_company" /> <result property="isImpCompany" column="is_imp_company" />
<result property="impCompanyType" column="imp_company_type" /> <result property="impCompanyType" column="imp_company_type" />
<result property="legalPerson" column="legal_person" />
<result property="legalIdCard" column="legal_id_card" />
<result property="legalPhone" column="legal_phone" />
</resultMap> </resultMap>
<sql id="selectCompanyVo"> <sql id="selectCompanyVo">
select company_id, name, location, industry, scale, del_flag, create_by, create_time, update_by, update_time, remark,code,description,nature,total_recruitment,registered_address,contact_person,contact_person_phone,is_abnormal,not_pass_reason,status,case when status='2' then update_time else null end reject_time,is_imp_company,imp_company_type,enterprise_type from company select company_id, name, location, industry, scale, del_flag, create_by, create_time, update_by, update_time, remark,code,description,nature,total_recruitment,registered_address,contact_person,contact_person_phone,is_abnormal,not_pass_reason,status,case when status='2' then update_time else null end reject_time,is_imp_company,imp_company_type,enterprise_type,legal_person,legal_id_card,legal_phone from company
</sql> </sql>
<insert id="batchInsert" parameterType="java.util.List"> <insert id="batchInsert" parameterType="java.util.List">
INSERT INTO company ( INSERT INTO company (

View File

@@ -112,6 +112,15 @@ public class Company extends BaseEntity
@ApiModelProperty("本地重点发展产业") @ApiModelProperty("本地重点发展产业")
private String impCompanyType; private String impCompanyType;
@ApiModelProperty("企业类型 0普通 1就业见习基地") @ApiModelProperty("是否是就业见习基地 0是 1否")
private String enterpriseType; private String enterpriseType;
@ApiModelProperty("法人姓名")
private String legalPerson;
@ApiModelProperty("法人身份证")
private String legalIdCard;
@ApiModelProperty("法人联系方式")
private String legalPhone;
} }