海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
500 B

<?php
namespace App\Common;
/**
* 产品状态,包括供应商产品和代理商产品
* Class UserStatus
* @package App\Common
*/
class ProductStatus
{
const ON_SALE = 1; //正常在售状态
const UNAUDITED = 0; //未审核状态
const REFUSE = -1; //审核拒绝
const SOLD_OUT = -2; //下架
public static function array(): array
{
return [
self::ON_SALE => '在售',
self::UNAUDITED => '未审核',
self::REFUSE => '拒绝',
self::SOLD_OUT => '下架',
];
}
}