Files
hyperf_service/app/Constants/Admin/DepotCode.php
LAPTOP-7SGDREK0\shiweijun 5b4eef5675 feat:depot_purchase
2025-02-13 10:48:55 +08:00

24 lines
404 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;
/***
* @var int 1=已入库 2=已出库
*/
const INT INPUT = 1;
const INT OUTPUT = 2;
}