Commit 3324b99e authored by hongguangwu's avatar hongguangwu

MVP1.7.6-SOCIAL_REDUCE_DATE 花名册 停缴日期

parent d01878bc
......@@ -487,4 +487,12 @@ public class SocialHandleExportVo implements Serializable {
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("离职日期" )
private String leaveDate;
// 取 社保停缴日期
@ExcelAttribute(name = "停缴日期")
@ContentStyle(dataFormat = 49)
@Schema(description = "停缴日期")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("停缴日期" )
private String socialReduceDate;
}
......@@ -1187,6 +1187,7 @@
<result property="firstPayTime" column="FIRST_PAY_TIME"/>
<result property="graduationTime" column="GRADUATION_TIME"/>
<result property="leaveDate" column="LEAVE_DATE"/>
<result property="socialReduceDate" column="SOCIAL_REDUCE_DATE"/>
</resultMap>
<resultMap id="fundHandleMap" type="com.yifu.cloud.plus.v1.yifu.social.vo.FundHandleExportVo">
......@@ -1278,7 +1279,8 @@
a.MAJOR,
a.FIRST_PAY_TIME,
a.GRADUATION_TIME,
IF(a.LEAVE_DATE is not null,DATE_FORMAT(a.LEAVE_DATE,"%Y-%m-%d"),"") as "LEAVE_DATE"
IF(a.LEAVE_DATE is not null,DATE_FORMAT(a.LEAVE_DATE,"%Y-%m-%d"),"") as "LEAVE_DATE",
IF(s.SOCIAL_REDUCE_DATE is not null,DATE_FORMAT(s.SOCIAL_REDUCE_DATE,"%Y-%m-%d"),"") as "SOCIAL_REDUCE_DATE"
FROM t_dispatch_info a
left join t_social_info s on a.SOCIAL_ID = s.id
left join t_dispatch_social_fund_info h on a.id = h.REDUCE_SOCIAL_FUND_ID
......
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