feat:dish depot

This commit is contained in:
LAPTOP-7SGDREK0\shiweijun
2025-01-14 17:04:48 +08:00
parent 99b95b76e9
commit 6b38a6b732
11 changed files with 523 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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;
}