mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
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;
|
||
|
|
|
||
|
|
}
|