往期累计新增字段的加解密

This commit is contained in:
钱涛 2023-09-18 14:43:02 +08:00
parent 83e0b1668e
commit 6b97efde4d
1 changed files with 6 additions and 0 deletions

View File

@ -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);