12 lines
172 B
PHP
12 lines
172 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Enum;
|
||
|
|
|
||
|
|
|
||
|
|
class CacheKeyEnum
|
||
|
|
{
|
||
|
|
|
||
|
|
const STOCK_RULE_PROPORTION = "stock_rule_proportion";
|
||
|
|
|
||
|
|
const DEFAULT_EXPIRE_DAY = "default_expire_day";
|
||
|
|
}
|