You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
1.8 KiB
88 lines
1.8 KiB
<?php
|
|
|
|
namespace App\Constants\v3;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
/**
|
|
* @Constants
|
|
*/
|
|
class SsdbKeys extends AbstractConstants
|
|
{
|
|
/**
|
|
* @Message("短信验证码")
|
|
*/
|
|
const VERIFY_CODE = 'verify_code_';
|
|
|
|
/**
|
|
* @Message("商品月销")
|
|
*/
|
|
const GOODS_MONTH_SALES = 'goods_m_sales_';
|
|
|
|
/**
|
|
* @Message("商户月销")
|
|
*/
|
|
const STORE_MONTH_SALES = 'store_m_sales_';
|
|
|
|
/**
|
|
* @Message("收藏店铺")
|
|
*/
|
|
const COLLECT_STORE_USER = 'collect_store_user_';
|
|
|
|
/**
|
|
* @Message("用户收藏店铺数量")
|
|
*/
|
|
const COUNT_COLLECT_STORE_USER = 'count_collect_store_user_';
|
|
|
|
/**
|
|
* @Message("店铺被收藏数量")
|
|
*/
|
|
const COUNT_COLLECT_STORE = 'count_collect_store_';
|
|
|
|
/**
|
|
* @Message("首页分类")
|
|
*/
|
|
const APPLET_INDEX_CATEGORY = 'applet_index_category';
|
|
|
|
/**
|
|
* @Message("用户信息")
|
|
*/
|
|
const USER_INFO = 'user_info_';
|
|
|
|
/**
|
|
* @Message("用户活动商品限购记录")
|
|
*/
|
|
const ACTIVITY_GOODS_BUY_RECORD = 'activity_goods_buy_record_';
|
|
|
|
/**
|
|
* @Message("优惠券返券活动")
|
|
*/
|
|
const COUPON_REBATE_ACTIVITY = 'coupon_rebate_activity';
|
|
|
|
/**
|
|
* @Message("优惠券返券领券")
|
|
*/
|
|
const COUPON_REBATE_RECEIVE = 'coupon_rebate_receive_';
|
|
|
|
/**
|
|
* @Message("优惠券返券列表")
|
|
*/
|
|
const COUPON_REBATE_LIST = 'coupon_rebate_list_';
|
|
|
|
/**
|
|
* @Message("起送价")
|
|
*/
|
|
const INTIAL_DELIVERY_AMOUNT = 'intial_delivery_amount';
|
|
|
|
/**
|
|
* @Message("Params Token Key Prefix")
|
|
*/
|
|
const PARAMS_TOKEN = 'params_token_v3_';
|
|
|
|
/**
|
|
* @Message("骑手坐标")
|
|
*/
|
|
const HORSEMAN_COORDINATE = 'horseman_coordinate_';
|
|
|
|
}
|