| 123456789101112131415161718192021 |
- <?php
- namespace app\api\model\plus\live;
- use app\common\model\plus\live\Plan as PlanModel;
- /**
- * 礼物模型
- */
- class Plan extends PlanModel
- {
- /**
- * 获取充值套餐列表
- */
- public function getList()
- {
- return $this->where('is_delete', '=', 0)
- ->order(['sort' => 'asc', 'create_time' => 'asc'])
- ->select();
- }
- }
|