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

33 lines
429 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;
/**
* 深度 0 省 1 市 2 区
*/
const DEEP_PROVINCE = 0;
const DEEP_CITY = 1;
const DEEP_DISTRICT = 2;
}