企业表添加-企业类型(0普通 1就业见习基地)

This commit is contained in:
sh
2025-10-21 18:51:36 +08:00
parent 8cf753ad54
commit 9281eb700b
2 changed files with 8 additions and 1 deletions

View File

@@ -31,10 +31,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="notPassReason" column="not_pass_reason" /> <result property="notPassReason" column="not_pass_reason" />
<result property="registeredAddress" column="registered_address" /> <result property="registeredAddress" column="registered_address" />
<result property="isAbnormal" column="is_abnormal" /> <result property="isAbnormal" column="is_abnormal" />
<result property="enterpriseType" column="enterprise_type" />
<result property="isImpCompany" column="is_imp_company" />
<result property="impCompanyType" column="imp_company_type" />
</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 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 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

@@ -111,4 +111,7 @@ public class Company extends BaseEntity
@ApiModelProperty("本地重点发展产业") @ApiModelProperty("本地重点发展产业")
private String impCompanyType; private String impCompanyType;
@ApiModelProperty("企业类型 0普通 1就业见习基地")
private String enterpriseType;
} }