From 882edc4b8ac7cb11ec9d536b5573df2c7ed512ef Mon Sep 17 00:00:00 2001 From: jiangqs <jiangqs> Date: 星期四, 20 七月 2023 20:22:12 +0800 Subject: [PATCH] bug --- ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/constant/AppErrorConstant.java | 20 +++++++++++++++++++- 1 files changed, 19 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 db79db6..d32ef24 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 = "设置价格不能低于最低限价"; @@ -79,4 +83,18 @@ String ACTIVITY_END = "活动已经结束"; String ACTIVITY_GOODS_NULL = "商品已售罄"; + + 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