|
@@ -21,6 +21,33 @@
|
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+ <insert id="saveCompanyInfo" keyProperty="CompanyAuthentication.id" useGeneratedKeys="true" parameterType="org.jeecg.modules.company.entity.CompanyAuthentication">
|
|
|
|
|
+ INSERT INTO dp_position(
|
|
|
|
|
+ user_id,
|
|
|
|
|
+ license_front,
|
|
|
|
|
+ other_license,
|
|
|
|
|
+ enterprise_name,
|
|
|
|
|
+ expiry_date,
|
|
|
|
|
+ is_human_resource,
|
|
|
|
|
+ authentication_status,
|
|
|
|
|
+ create_time,
|
|
|
|
|
+ update_time,
|
|
|
|
|
+ del_flag
|
|
|
|
|
+ ) VALUES (
|
|
|
|
|
+ #{CompanyAuthentication.userId},
|
|
|
|
|
+ #{CompanyAuthentication.licenseFront},
|
|
|
|
|
+ #{CompanyAuthentication.otherLicense},
|
|
|
|
|
+ #{CompanyAuthentication.enterpriseName},
|
|
|
|
|
+ #{CompanyAuthentication.expiryDate},
|
|
|
|
|
+ #{CompanyAuthentication.isHumanResource},
|
|
|
|
|
+ #{CompanyAuthentication.authenticationStatus},
|
|
|
|
|
+ #{CompanyAuthentication.createTime},
|
|
|
|
|
+ #{CompanyAuthentication.updateTime},
|
|
|
|
|
+ #{CompanyAuthentication.delFlag}
|
|
|
|
|
+ )
|
|
|
|
|
+ </insert>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
<select id="queryPageList1" resultType="org.jeecg.modules.company.entity.CompanyAuthentication">
|
|
<select id="queryPageList1" resultType="org.jeecg.modules.company.entity.CompanyAuthentication">
|
|
|
SELECT
|
|
SELECT
|
|
|
<include refid="companyColumns"/>
|
|
<include refid="companyColumns"/>
|