Commit 1b3cc8b0 authored by lixuan's avatar lixuan

feat: 新增字段

parent adb9c3dc
Pipeline #146810 failed with stages
in 1 second
......@@ -28,7 +28,7 @@ public class BusinessEntityInfo implements Serializable {
private String industryClassification;
private Boolean gs;
private Integer gs;
private Boolean registrationPlaceFlag;
......
......@@ -31,7 +31,7 @@ public class BusinessEntityDto {
private String industryClassification;
private Boolean gs;
private Integer gs;
private Boolean registrationPlaceFlag;
......
......@@ -73,13 +73,13 @@ public class HouseResourceExport {
@Excel(name = "行业分类")
private String industryClassification;
@Excel(name = "是否规上企业", readConverterExp = "false=否,true=是")
private Boolean gs;
@Excel(name = "是否规上企业", readConverterExp = "0=未入库,1=已入库,2=拟入库")
private Integer gs;
@Excel(name = "备注")
private String remark;
@Excel(name = "有无欠薪", readConverterExp = "false=无,true=有")
@Excel(name = "是否有预付式或投资形支付行为", readConverterExp = "false=无,true=有")
private Boolean backPayFlag;
@Excel(name = "涉稳风险")
......
......@@ -108,7 +108,7 @@ public class HouseResourcePage {
private String industryClassification;
private Boolean gs;
private Integer gs;
private BigDecimal dayPrice;
......
......@@ -12,7 +12,7 @@
<result column="worker_number" property="workerNumber" jdbcType="INTEGER"/>
<result column="registered_address" property="registeredAddress" jdbcType="VARCHAR"/>
<result column="industry_classification" property="industryClassification" jdbcType="VARCHAR"/>
<result property="gs" column="gs" jdbcType="BIT"/>
<result property="gs" column="gs" jdbcType="INTEGER"/>
<result property="registrationPlaceFlag" column="registration_place_flag" jdbcType="INTEGER"/>
<result property="associationBusinessEntityFlag" column="association_business_entity_flag" jdbcType="INTEGER"/>
<result property="backPayFlag" column="back_pay_flag" jdbcType="INTEGER"/>
......
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