Files
hyperf_service/app/Constants/Admin/MaterialCode.php
LAPTOP-7SGDREK0\shiweijun 9eebcd008f feat:material material_category
2025-01-21 17:16:37 +08:00

29 lines
420 B
PHP

<?php
namespace App\Constants\Admin;
use Hyperf\Constants\AbstractConstants;
use Hyperf\Constants\Annotation\Constants;
#[Constants]
class MaterialCode extends AbstractConstants
{
/**
* 未删除
*/
const int IS_NO_DEL = 1;
/**
* 已删除
*/
const int IS_DEL = 2;
/**
* 启用
*/
const int ENABLE = 1;
/**
* 禁用
*/
const int DISABLE = 2;
}