Files
hyperf_service/app/Constants/Common/MaterialCode.php
LAPTOP-7SGDREK0\shiweijun 575fe86aa6 feat:material_application
2025-02-06 18:13:20 +08:00

39 lines
568 B
PHP

<?php
namespace App\Constants\Common;
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;
const int UN_AUDIT = 1;
const int AUDITED = 2;
const int AUDIT_REFUSE = 3;
const int PART_OUT = 4;
const int ALL_OUT = 5;
}