This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/enum/order/Status.php

47 lines
947 B
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\common\enum\order;
use app\common\enum\EnumBasics;
class Status extends EnumBasics
{
// 进行中
const NORMAL = 10;
// 已取消
const CANCELLED = 20;
// 待取消
const APPLY_CANCEL = 21;
// 已完成
const COMPLETED = 30;
/**
* 获取枚举数据
* @return array
*/
public static function data()
{
return [
self::NORMAL => [
'name' => '进行中',
'value' => self::NORMAL,
],
self::CANCELLED => [
'name' => '已取消',
'value' => self::CANCELLED,
],
self::APPLY_CANCEL => [
'name' => '待取消',
'value' => self::APPLY_CANCEL,
],
self::COMPLETED => [
'name' => '已完成',
'value' => self::COMPLETED,
],
];
}
}