| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace common\enums;
- /**
- * 状态枚举
- *
- *
- * Class StatusEnum
- * @package common\enums
- * @author qimall
- */
- class CartEnum extends BaseEnum
- {
- const MALL_CART = 1; //主商城购物车
- const STORE_MALL_CART = 2; // o2o门店购物车
- /**
- * @return array
- */
- public static function getMap(): array
- {
- return [
- self::MALL_CART => '主商城商品',
- self::STORE_MALL_CART => 'o2o商品',
- // self::DELETE => '已删除',
- ];
- }
- }
|