Commit 5d30caf9 authored by fangxinjiang's avatar fangxinjiang

社保公积金查询:档案地-省、户口性质、名族 处理

parent 63354f37
...@@ -116,7 +116,7 @@ public class TSocialFundInfoExportVo extends RowIndex implements Serializable { ...@@ -116,7 +116,7 @@ public class TSocialFundInfoExportVo extends RowIndex implements Serializable {
@ExcelProperty("身份证所在地") @ExcelProperty("身份证所在地")
private String idCardAddress; private String idCardAddress;
@ExcelAttribute(name = "档案-省") @ExcelAttribute(name = "档案-省", isArea = true)
@Schema(description = "档案-省") @Schema(description = "档案-省")
@HeadFontStyle(fontHeightInPoints = 11) @HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("档案-省") @ExcelProperty("档案-省")
......
...@@ -1221,6 +1221,9 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T ...@@ -1221,6 +1221,9 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
temp.append(DispatchConstants.DISPATCH_FUND); temp.append(DispatchConstants.DISPATCH_FUND);
} }
} }
if (Common.isNotNull(temp.toString())){
temp.deleteCharAt(temp.length()-1);
}
dispatch.setDispatchItem(temp.toString()); dispatch.setDispatchItem(temp.toString());
} }
......
...@@ -256,6 +256,9 @@ ...@@ -256,6 +256,9 @@
<result property="fundSum" column="FUND_SUM"/> <result property="fundSum" column="FUND_SUM"/>
<result property="trustRemark" column="TRUST_REMARK"/> <result property="trustRemark" column="TRUST_REMARK"/>
<result property="empNational" column="EMP_NATIONAL"/>
<result property="empRegisType" column="EMP_REGIS_TYPE"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
a.ID, a.ID,
...@@ -1035,7 +1038,9 @@ ...@@ -1035,7 +1038,9 @@
a.UNEMPLOY_HANDLE, a.UNEMPLOY_HANDLE,
a.WORK_INJURY_HANDLE, a.WORK_INJURY_HANDLE,
a.BIRTH_HANDLE, a.BIRTH_HANDLE,
a.BIGAILMENT_HANDLE a.BIGAILMENT_HANDLE,
d.EMP_NATIONAL,
d.EMP_REGIS_TYPE
from t_social_fund_info a from t_social_fund_info a
left join t_dispatch_info d on a.DISPATCH_ID=d.ID left join t_dispatch_info d on a.DISPATCH_ID=d.ID
<where> <where>
......
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