添加"成片"的基础业务接口和实现

This commit is contained in:
longbinbin
2024-12-03 16:51:03 +08:00
parent 816501a374
commit 78ce483c0d
16 changed files with 206 additions and 47 deletions

View File

@ -71,7 +71,7 @@ public class ApiResponse<T> implements Serializable {
* @param msg
* @return
*/
public static <T> ApiResponse<T> commonError(String msg) {
public static <T> ApiResponse<T> fail(String msg) {
return buildResponse(ApiConst.Code.CODE_COMMON_ERROR, msg);
}