Commit 689c722c authored by fangxinjiang's avatar fangxinjiang

派单查询详情优化-fxj

parent 19d7863d
...@@ -615,6 +615,26 @@ public class TSocialInfo extends BaseEntity { ...@@ -615,6 +615,26 @@ public class TSocialInfo extends BaseEntity {
@ExcelProperty("社保是否可以补缴") @ExcelProperty("社保是否可以补缴")
private String canOverpayPension; private String canOverpayPension;
/**
* 社保补缴政策
*/
@Length(max = 500, message = "社保补缴政策 不能超过500个字符" )
@ExcelAttribute(name = "社保补缴政策", maxLength = 500)
@Schema(description = "社保补缴政策" )
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("社保补缴政策" )
private String payPolicyPension;
/**
* 医保补缴政策
*/
@Length(max = 500, message = "医保补缴政策 不能超过500个字符" )
@ExcelAttribute(name = "医保补缴政策", maxLength = 500)
@Schema(description = "医保补缴政策" )
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("医保补缴政策" )
private String payPolicyMedical;
/** /**
* 医保是否可以补缴: 0:是,1:否 * 医保是否可以补缴: 0:是,1:否
......
...@@ -1818,6 +1818,8 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T ...@@ -1818,6 +1818,8 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
} }
social.setCanOverpay(socialSet.getCanOverpay()); social.setCanOverpay(socialSet.getCanOverpay());
social.setCanOverpayPension(socialSet.getCanOverpayPension()); social.setCanOverpayPension(socialSet.getCanOverpayPension());
social.setPayPolicyPension(socialSet.getPayPolicyPension());
social.setPayPolicyMedical(socialSet.getPayPolicyMedical());
social.setCanOverpayMedical(socialSet.getCanOverpayMedical()); social.setCanOverpayMedical(socialSet.getCanOverpayMedical());
social.setCardinalId(socialSet.getId()); social.setCardinalId(socialSet.getId());
social.setSocialHousehold(socialSet.getDepartId()); social.setSocialHousehold(socialSet.getDepartId());
......
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