个税申报开关-查询是否开启

This commit is contained in:
Harryxzy 2022-11-08 13:58:21 +08:00
parent 1fb96be58b
commit 0630fb7b7d
2 changed files with 8 additions and 0 deletions

View File

@ -39,5 +39,10 @@ public class AppSettingVO {
*/
private String isOpenEncrypt;
/**
* 是否开启个税申报功能
*/
private String isOpenTaxDeclaration;
}

View File

@ -426,6 +426,9 @@ public class SalarySysConfServiceImpl extends Service implements SalarySysConfSe
case OPEN_APPLICATION_ENCRYPT:
appSettingVO.setIsOpenEncrypt(salarySysConfPO.getConfValue());
break;
case TAX_DECLARATION_FUNCTION:
appSettingVO.setIsOpenTaxDeclaration(salarySysConfPO.getConfValue());
break;
default:
break;
}