Files
hyperf_service/app/Constants/Common/CityCode.php
2024-10-31 16:30:29 +08:00

26 lines
297 B
PHP

<?php
namespace App\Constants\Common;
class CityCode
{
/**
* 禁用
*/
const STATUS_DISABLE = 2;
/**
* 启用
*/
const STATUS_ENABLE = 1;
/**
* 删除
*/
const IS_DELETE = 2;
/**
* 不删除
*/
const IS_NOT_DELETE = 1;
}