项目模块初步完成

This commit is contained in:
2025-05-06 16:38:42 +08:00
parent 5038cebbfa
commit 2eb5ee1207
21 changed files with 1026 additions and 132 deletions

View File

@ -170,6 +170,10 @@ public class OperateLogAspect {
for (Object o : paramsArray) {
if (o != null) {
try {
// 排除掉 RequestFacade 类型的对象
if (o instanceof org.apache.catalina.connector.RequestFacade) {
continue; // 跳过该对象
}
Object jsonObj = JSON.toJSON(o);
params += jsonObj.toString() + " ";
} catch (Exception e) {