Commit adb9c3dc authored by lixuan's avatar lixuan

feat: 新增字段

parent f9ac56be
Pipeline #146807 failed with stages
in 0 seconds
...@@ -34,6 +34,8 @@ public class BusinessEntityInfo implements Serializable { ...@@ -34,6 +34,8 @@ public class BusinessEntityInfo implements Serializable {
private Boolean backPayFlag; private Boolean backPayFlag;
private String stabilityRelated;
private Date investigationDate; private Date investigationDate;
private String note; private String note;
......
...@@ -39,6 +39,8 @@ public class BusinessEntityDto { ...@@ -39,6 +39,8 @@ public class BusinessEntityDto {
private Boolean backPayFlag; private Boolean backPayFlag;
private String stabilityRelated;
private Date investigationDate; private Date investigationDate;
private String note; private String note;
......
...@@ -82,6 +82,9 @@ public class HouseResourceExport { ...@@ -82,6 +82,9 @@ public class HouseResourceExport {
@Excel(name = "有无欠薪", readConverterExp = "false=无,true=有") @Excel(name = "有无欠薪", readConverterExp = "false=无,true=有")
private Boolean backPayFlag; private Boolean backPayFlag;
@Excel(name = "涉稳风险")
private String stabilityRelated;
@Excel(name = "排查时间", dateFormat = "yyyy-MM-dd") @Excel(name = "排查时间", dateFormat = "yyyy-MM-dd")
private Date investigationDate; private Date investigationDate;
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
<result property="registrationPlaceFlag" column="registration_place_flag" jdbcType="INTEGER"/> <result property="registrationPlaceFlag" column="registration_place_flag" jdbcType="INTEGER"/>
<result property="associationBusinessEntityFlag" column="association_business_entity_flag" jdbcType="INTEGER"/> <result property="associationBusinessEntityFlag" column="association_business_entity_flag" jdbcType="INTEGER"/>
<result property="backPayFlag" column="back_pay_flag" jdbcType="INTEGER"/> <result property="backPayFlag" column="back_pay_flag" jdbcType="INTEGER"/>
<result property="stabilityRelated" column="stability_related" jdbcType="VARCHAR"/>
<result property="investigationDate" column="investigation_date" jdbcType="DATE"/> <result property="investigationDate" column="investigation_date" jdbcType="DATE"/>
<result property="note" column="note" jdbcType="LONGVARCHAR"/> <result property="note" column="note" jdbcType="LONGVARCHAR"/>
</resultMap> </resultMap>
...@@ -23,10 +24,10 @@ ...@@ -23,10 +24,10 @@
<insert id="insertBusinessEntityInfo" parameterType="com.ruoyi.system.domain.house.BusinessEntityInfo"> <insert id="insertBusinessEntityInfo" parameterType="com.ruoyi.system.domain.house.BusinessEntityInfo">
INSERT INTO business_entity_info ( INSERT INTO business_entity_info (
id, name, nature, social_credit_code, id, name, nature, social_credit_code,
principal, principal_tel, business, worker_number, registered_address, industry_classification, gs, registration_place_flag, association_business_entity_flag, back_pay_flag, investigation_date, note principal, principal_tel, business, worker_number, registered_address, industry_classification, gs, registration_place_flag, association_business_entity_flag, back_pay_flag, stability_related, investigation_date, note
) VALUES ( ) VALUES (
#{id}, #{name}, #{nature}, #{socialCreditCode}, #{id}, #{name}, #{nature}, #{socialCreditCode},
#{principal}, #{principalTel}, #{business}, #{workerNumber}, #{registeredAddress}, #{industryClassification}, #{gs}, #{registrationPlaceFlag}, #{associationBusinessEntityFlag}, #{backPayFlag}, #{investigationDate}, #{note} #{principal}, #{principalTel}, #{business}, #{workerNumber}, #{registeredAddress}, #{industryClassification}, #{gs}, #{registrationPlaceFlag}, #{associationBusinessEntityFlag}, #{backPayFlag}, #{stabilityRelated}, #{investigationDate}, #{note}
) )
</insert> </insert>
...@@ -50,6 +51,7 @@ ...@@ -50,6 +51,7 @@
<if test="registrationPlaceFlag != null">registration_place_flag=#{registrationPlaceFlag},</if> <if test="registrationPlaceFlag != null">registration_place_flag=#{registrationPlaceFlag},</if>
<if test="associationBusinessEntityFlag != null">association_business_entity_flag=#{associationBusinessEntityFlag},</if> <if test="associationBusinessEntityFlag != null">association_business_entity_flag=#{associationBusinessEntityFlag},</if>
<if test="backPayFlag != null">back_pay_flag=#{backPayFlag},</if> <if test="backPayFlag != null">back_pay_flag=#{backPayFlag},</if>
<if test="stabilityRelated != null">stability_related=#{stabilityRelated},</if>
<if test="investigationDate != null">investigation_date=#{investigationDate},</if> <if test="investigationDate != null">investigation_date=#{investigationDate},</if>
<if test="note != null">note=#{note},</if> <if test="note != null">note=#{note},</if>
</set> </set>
......
...@@ -643,6 +643,7 @@ ...@@ -643,6 +643,7 @@
t4.industry_classification, t4.industry_classification,
t4.gs, t4.gs,
t4.back_pay_flag, t4.back_pay_flag,
t4.stability_related,
t4.investigation_date, t4.investigation_date,
t4.note, t4.note,
t1.remark, t1.remark,
...@@ -814,6 +815,7 @@ ...@@ -814,6 +815,7 @@
t4.registration_place_flag, t4.registration_place_flag,
t4.back_pay_flag, t4.back_pay_flag,
t4.investigation_date, t4.investigation_date,
t4.stability_related,
t4.note, t4.note,
t4.registered_address, t4.registered_address,
t4.industry_classification, t4.industry_classification,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment