Files
datahub/backend/app/Platform/Shopee/Constants/ItemStatus.php
T
2025-12-09 16:02:52 +08:00

34 lines
587 B
PHP

<?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: int
{
use EnumConstantsTrait;
#[Message("Normal")]
case NORMAL = 1;
#[Message("Banned")]
case BANNED = 2;
#[Message("Unlisted")]
case UNLIST = 3;
#[Message("Reviewing")]
case REVIEWING = 4;
#[Message("Seller deleted")]
case SELLER_DELETE = 5;
#[Message("Shopee deleted")]
case SHOPEE_DELETE = 6;
}