feat : city
This commit is contained in:
26
app/Constants/Common/CityCode.php
Normal file
26
app/Constants/Common/CityCode.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Constants\Common;
|
||||
|
||||
class CityCode
|
||||
{
|
||||
/**
|
||||
* 禁用
|
||||
*/
|
||||
const STATUS_DISABLE = 2;
|
||||
|
||||
/**
|
||||
* 启用
|
||||
*/
|
||||
const STATUS_ENABLE = 1;
|
||||
|
||||
/**
|
||||
* 删除
|
||||
*/
|
||||
const IS_DELETE = 2;
|
||||
|
||||
/**
|
||||
* 不删除
|
||||
*/
|
||||
const IS_NOT_DELETE = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user