GlobeExceptionMsg.java 1.56 KB
package com.topdraw.exception;

/**
 * @author :
 * @description:
 * @function :
 * @date :Created in 2022/3/10 17:16
 * @version: :
 * @modified By:
 * @since : modified in 2022/3/10 17:16
 */
public interface GlobeExceptionMsg {

/**************************************************************/
    /** 系统 */
    String OPERATION_FORBID = "operation forbid";
    String ENTITY_ALREADY_EXISTS = "entity already exists";


/**************************************************************/
    /** 优惠券 */
    String COUPON_ID_IS_NULL = "coupon id is null";
    String COUPON_CODE_IS_NULL = "coupon code is null";


/**************************************************************/

    /** 会员管理 */
    String MEMBER_CODE_IS_NULL = "memberCode is null";
    String MEMBER_ID_IS_NULL = "memberId is null";
    String MEMBER_ID_AND_CODE_ARE_NULL = "memberId and memberCode both null";
    String MEMBER_INFO_ERROR = "member info is error";
    String MEMBER_BLOCK_STATUS = "member status is block";

/**************************************************************/

    /** 账户管理 **/

    /** iptv */
    String IPTV_ID_IS_NULL = "iptvId is null";
    String IPTV_PLATFORM_ACCOUNT_IS_NULL = "platformAccount is null";
    String IPTV_IS_NULL = "iptv is null";
    String VIS_USER_ID_IS_NULL = "visUserId is null";

    /** 微信 */
    String APP_ID_IS_NULL = "appId is null";
    String OPEN_ID_IS_NULL = "openId is null";
    String UNION_ID_IS_NULL = "unionId is null";
    String ALREADY_BIND = "already bind";
    String WEIXIN_IS_NULL = "weixin is null";
}