Commit a88f2d66 by jinxin

文案调整

parent 27fcc0a3
...@@ -227,7 +227,7 @@ public class AuditController extends WebBaseController { ...@@ -227,7 +227,7 @@ public class AuditController extends WebBaseController {
AuditDTO audit = auditApiService.findById(auditId); AuditDTO audit = auditApiService.findById(auditId);
if (audit == null || audit.getAuditStatus() != 0) { if (audit == null || audit.getAuditStatus() != 0) {
RedisUtil.unlock(key); RedisUtil.unlock(key);
return resultResponse(HaoBanErrCode.ERR_10017); return resultResponse(HaoBanErrCode.ERR_100035);
} }
String result = auditApiService.audit("", auditId, staffName, staffId); String result = auditApiService.audit("", auditId, staffName, staffId);
RedisUtil.unlock(key); RedisUtil.unlock(key);
......
...@@ -132,6 +132,8 @@ public enum HaoBanErrCode { ...@@ -132,6 +132,8 @@ public enum HaoBanErrCode {
*/ */
ERR_100033(100033, "分组被关联,不可删除"), ERR_100033(100033, "分组被关联,不可删除"),
ERR_100034(100034, "微信预支付订单生成失败!"), ERR_100034(100034, "微信预支付订单生成失败!"),
ERR_100035(100035,"该条记录已审核"),
; ;
private int code; private int code;
private String msg; private String msg;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment