17 lines
254 B
PHP
17 lines
254 B
PHP
<?php
|
|
|
|
namespace App\Http\Enum;
|
|
|
|
|
|
class DevConfigKeyEnum
|
|
{
|
|
|
|
const STOCK_RULE_PROPORTION = "stock_rule_proportion";
|
|
|
|
const DEFAULT_STOCK_RULE_PROPORTION = 0.2;
|
|
|
|
const SKU_EXPIRE_DAY = "sku_expire_day";
|
|
|
|
const DEFAULT_EXPIRE_DAY = 3;
|
|
|
|
} |