Files
datahub/backend/app/Platform/Shopee/Constants/ItemStatus.php
T

34 lines
649 B
PHP
Raw Normal View History

2025-12-09 15:46:01 +08:00
<?php
declare(strict_types=1);
namespace App\Platform\Shopee\Constants;
use Hyperf\Constants\Annotation\Constants;
use Hyperf\Constants\Annotation\Message;
use Hyperf\Constants\EnumConstantsTrait;
#[Constants]
enum ItemStatus: string
{
use EnumConstantsTrait;
#[Message("Normal")]
case NORMAL = 'NORMAL';
#[Message("Banned")]
case BANNED = 'BANNED';
#[Message("Unlisted")]
case UNLIST = 'UNLIST';
#[Message("Reviewing")]
case REVIEWING = 'REVIEWING';
#[Message("Seller deleted")]
case SELLER_DELETE = 'SELLER_DELETE';
#[Message("Shopee deleted")]
case SHOPEE_DELETE = 'SHOPEE_DELETE';
}