17 lines
294 B
PHP
17 lines
294 B
PHP
<?php
|
|
|
|
namespace App\Constants\Admin;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
#[Constants]
|
|
class DepotCode extends AbstractConstants
|
|
{
|
|
/***
|
|
* @var int 1=未删除 2=已删除
|
|
*/
|
|
const int IS_NO_DEL = 1;
|
|
|
|
const int IS_DEL = 2;
|
|
} |