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.
54 lines
1.1 KiB
54 lines
1.1 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
/**
|
|
* @Constants
|
|
*/
|
|
class SsdbKeysPrefix extends AbstractConstants
|
|
{
|
|
/**
|
|
* @Message("Params Token Key Prefix")
|
|
*/
|
|
const PARAMS_TOKEN = 'params_token_';
|
|
|
|
/**
|
|
* @Message("Coupon rebate Key Prefix")
|
|
*/
|
|
const COUPON_REBATE_RECEIVE = 'coupon_rebate_receive_';
|
|
|
|
/**
|
|
* @Message("Coupon rebate Key Prefix")
|
|
*/
|
|
const COUPON_REBATE_FORWARD = 'coupon_rebate_forward_';
|
|
|
|
/**
|
|
* @Message("Coupon rebate Key Prefix")
|
|
*/
|
|
const COUPON_REBATE_REPAY = 'coupon_rebate_repay_';
|
|
|
|
/**
|
|
* @Message("Coupon rebate Key Prefix")
|
|
*/
|
|
const COUPON_REBATE_ACTIVITY = 'coupon_rebate_activity';
|
|
|
|
/**
|
|
* @Message("Store New User")
|
|
*/
|
|
const STORE_NEW_USER = 'store_new_user_';
|
|
|
|
/**
|
|
* @Message("Coupon rebate List")
|
|
*/
|
|
const COUPON_REBATE_LIST = 'coupon_rebate_list_';
|
|
|
|
/**
|
|
* @Message("PURCHASE RECORD")
|
|
*/
|
|
const PURCHASE_RECORD = 'purchase_record_';
|
|
}
|