往期累计新增字段的加解密
This commit is contained in:
parent
83e0b1668e
commit
6b97efde4d
|
|
@ -988,6 +988,9 @@ public class SalarySysConfServiceImpl extends Service implements SalarySysConfSe
|
|||
po.setAddUpTaxSavings(AESEncryptUtil.closeEncryptSetting(po.getAddUpTaxSavings()));
|
||||
po.setAddUpInfantCare(AESEncryptUtil.closeEncryptSetting(po.getAddUpInfantCare()));
|
||||
po.setAddUpPrivatePension(AESEncryptUtil.closeEncryptSetting(po.getAddUpPrivatePension()));
|
||||
po.setActualAddUpAdvanceTax(AESEncryptUtil.closeEncryptSetting(po.getActualAddUpAdvanceTax()));
|
||||
po.setTaxAdjustment(AESEncryptUtil.closeEncryptSetting(po.getTaxAdjustment()));
|
||||
po.setAddUpTaxableIncome(AESEncryptUtil.closeEncryptSetting(po.getAddUpTaxableIncome()));
|
||||
} else {
|
||||
po.setAddUpIncome(AESEncryptUtil.encrypt(po.getAddUpIncome()));
|
||||
po.setAddUpSubtraction(AESEncryptUtil.encrypt(po.getAddUpSubtraction()));
|
||||
|
|
@ -1007,6 +1010,9 @@ public class SalarySysConfServiceImpl extends Service implements SalarySysConfSe
|
|||
po.setAddUpTaxSavings(AESEncryptUtil.encrypt(po.getAddUpTaxSavings()));
|
||||
po.setAddUpInfantCare(AESEncryptUtil.encrypt(po.getAddUpInfantCare()));
|
||||
po.setAddUpPrivatePension(AESEncryptUtil.encrypt(po.getAddUpPrivatePension()));
|
||||
po.setActualAddUpAdvanceTax(AESEncryptUtil.encrypt(po.getActualAddUpAdvanceTax()));
|
||||
po.setTaxAdjustment(AESEncryptUtil.encrypt(po.getTaxAdjustment()));
|
||||
po.setAddUpTaxableIncome(AESEncryptUtil.encrypt(po.getAddUpTaxableIncome()));
|
||||
}
|
||||
});
|
||||
List<List<AddUpSituation>> partition = Lists.partition(addUpSituations, 50);
|
||||
|
|
|
|||
Loading…
Reference in New Issue