代码优化

This commit is contained in:
2025-11-06 17:04:11 +08:00
parent 11852beb31
commit 200035414d
25 changed files with 278 additions and 740 deletions

View File

@ -31,7 +31,8 @@ public class CommonCallUtils {
* @return String 返回类型 函数返回非空、或者数据库异常时rollback函数返回空时commit
*/
public static String saveAfter(String table,long id) {
return callService.saveAfter(table, id);
String msg = callService.saveAfter(table, id);
return msg;
}
/**