From e9c2add5ced364cc7beb45feeee1b28901e4de05 Mon Sep 17 00:00:00 2001 From: zxc <954985706@qq.com> Date: Thu, 14 May 2020 09:25:54 +0800 Subject: [PATCH] =?UTF-8?q?EpmetErrorCode=20=E8=A1=A5=E6=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/epmet/commons/tools/exception/EpmetErrorCode.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/exception/EpmetErrorCode.java b/epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/exception/EpmetErrorCode.java index 8aa19240ca..78f66e9330 100644 --- a/epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/exception/EpmetErrorCode.java +++ b/epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/exception/EpmetErrorCode.java @@ -40,7 +40,10 @@ public enum EpmetErrorCode { MOBILE_USED(8402,"该手机号已注册"), STAFF_ADD_FAILED(8403,"人员添加失败"), STAFF_EDIT_FAILED(8404,"人员编辑失败"), - CANNOT_DISABLE_YOURSELF(8405,"您不能禁用自己"),; + CANNOT_DISABLE_YOURSELF(8405,"您不能禁用自己"), + + ALREADY_EVALUATE(8501,"您已评价"), + ALREADY_VOTE(8502,"您已表态"); private int code; private String msg;