fix(系统设置): 修复数据填报权限授权报错问题

This commit is contained in:
wangjiahao 2024-04-26 13:30:28 +08:00
parent 337f48e3f0
commit 0cf7b6e214
2 changed files with 7 additions and 0 deletions

View File

@ -129,6 +129,10 @@ public class XAuthServer {
if (StringUtils.equals("panel", sourceType)) {
return SysLogConstants.SOURCE_TYPE.PANEL;
}
if (StringUtils.equals("data_fill", sourceType)) {
return SysLogConstants.SOURCE_TYPE.DATA_FILL_FORM;
}
return null;
}

View File

@ -104,6 +104,9 @@ public class LogManager {
case 11:
typeValue = "menu";
break;
case 13:
typeValue = "data_fill";
break;
default:
break;
}