| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- // +----------------------------------------------------------------------
- // | LARAVEL8.0 框架 [ LARAVEL ][ RXThinkCMF ]
- // +----------------------------------------------------------------------
- // | 版权所有 2017~2021 LARAVEL研发中心
- // +----------------------------------------------------------------------
- // | 官方网站: http://www.laravel.cn
- // +----------------------------------------------------------------------
- // | Author: laravel开发员 <laravel.qq.com>
- // +----------------------------------------------------------------------
- namespace App\Models;
- /**
- * 广告管理-模型
- * Class ApiModel
- * @package App\Models
- */
- class ApiModel extends BaseModel
- {
- // 设置数据表
- protected $table = 'apis';
- /**
- * 获取广告信息
- * @param int $id
- * @return array|string
- */
- public function getInfo($id)
- {
- $info = parent::getInfo($id); // TODO: Change the autogenerated stub
- if ($info) {
- // 权限
- if (isset($info['user_limits'])) {
- $info['user_limits'] = $info['user_limits']? explode(',', $info['user_limits']) : [0];
- }
- // 有效期
- if ($info['expired_at']) {
- $info['expired_at'] = $info['expired_at'] > date('Y-m-d H:i:s')? $info['expired_at'] : '';
- }
- }
- return $info;
- }
- }
|