jingcai-php/app/Enums/SellerLevel.php

13 lines
190 B
PHP
Executable File

<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
use Illuminate\Support\Arr;
final class SellerLevel extends Enum
{
const MASTER = 1; // 店主
const STAFF = 2; // 店员
}