Add earnings adjustments, withdrawal reject, and auth guard

This commit is contained in:
irving
2026-01-12 12:46:42 -05:00
parent d335c577d3
commit 56239450d4
34 changed files with 3117 additions and 22 deletions

View File

@@ -52,6 +52,10 @@ public class TypedR<T> implements Serializable {
return new TypedR<>(ResultCodeEnum.SUCCESS.getCode(), true, msg, data);
}
public static <T> TypedR<T> accepted(T data) {
return new TypedR<>(202, true, "请求处理中", data);
}
/**
* Build a list response from MyBatis-Plus page while flattening records/total/pageInfo.
*/