From add86a49cc69b6882500c95dd67a2ac826c35526 Mon Sep 17 00:00:00 2001 From: jiangqs <jiangqs> Date: 星期三, 26 七月 2023 20:16:51 +0800 Subject: [PATCH] bug --- ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/constant/AppErrorConstant.java | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/constant/AppErrorConstant.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/constant/AppErrorConstant.java index d96ecdc..39c5b55 100644 --- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/constant/AppErrorConstant.java +++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/constant/AppErrorConstant.java @@ -12,6 +12,10 @@ String USER_NOT_LOGIN = "用户没有登录或登录已失效"; + String USER_NO_SHOP = "用户没有关联商户"; + + String USER_NO_SYSTEM = "员工没有录入系统"; + String MOBILE_USER_DOUBLE = "手机号已创建用户,请直接登录"; String MOBILE_DOUBLE = "手机号已被占用"; @@ -22,7 +26,7 @@ String INTEGRAL_USE_FAILED = "积分不够支付"; - String CANCEL_ERROR_ORDER = "只能取消未支付订单"; + String CANCEL_ERROR_ORDER = "已核销订单不能取消"; String SALESPRICE_MIN = "设置价格不能低于最低限价"; @@ -80,7 +84,19 @@ String ACTIVITY_GOODS_NULL = "商品已售罄"; + String ACTIVITY_GOODS_BEYOND = "超出商品购买限制"; + String BIRTHDAY_NULL = "未填写生日"; String BIRTHDAY_ERROR = "只有生日当月领取"; + + String COUPON_GET_ERROR = "该优惠券不可领取"; + + String COUPON_GET_ALL = "该优惠券已领取完"; + + String DOUBLE_INTEGRAL_TASK = "任务已完成,请勿重复提交"; + + String ACTIVITY_TIME_ERROR = "只能选择大于当前时间作为开始时间"; + + String TRANS_NOT_MYSELF = "不能转移给自己"; } -- Gitblit v1.7.1