2024-07-27 16:51:00 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Enum;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CacheKeyEnum
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
const STOCK_RULE_PROPORTION = "stock_rule_proportion";
|
|
|
|
|
|
|
|
|
|
const DEFAULT_EXPIRE_DAY = "default_expire_day";
|
2024-08-01 17:53:32 +08:00
|
|
|
|
|
|
|
|
const SPU_STATISTIC_BY_DATE = "spu_statistic_by_date";
|
2024-07-27 16:51:00 +08:00
|
|
|
}
|