刘小明
2024-08-13 18e13b726530bd87b858b14287c9c54efd772daa
无权限时的提示
1个文件已修改
4 ■■■■ 已修改文件
pms-parent/pms-common/src/main/java/com/dy/common/webUtil/BaseResponseUtils.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pms-parent/pms-common/src/main/java/com/dy/common/webUtil/BaseResponseUtils.java
@@ -21,11 +21,11 @@
    }
    public static BaseResponse buildToLogin(){
        return buildResult(ResultCodeMsg.RsCode.TOLOGIN_CODE, ResultCodeMsg.RsMsg.TOLOGIN_MESSAGE, null);
        return buildResult(ResultCodeMsg.RsCode.TOLOGIN_CODE, ResultCodeMsg.RsMsg.TOLOGIN_MESSAGE, ResultCodeMsg.RsMsg.TOLOGIN_MESSAGE);
    }
    public static BaseResponse buildNoPower(){
        return buildResult(ResultCodeMsg.RsCode.NOPOWER_CODE, ResultCodeMsg.RsMsg.NOPOWER_MESSAGE, null);
        return buildResult(ResultCodeMsg.RsCode.NOPOWER_CODE, ResultCodeMsg.RsMsg.NOPOWER_MESSAGE, ResultCodeMsg.RsMsg.NOPOWER_MESSAGE);
    }
    public static BaseResponse buildException(String message){