|
|
|
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
declare (strict_types=1);
|
|
|
|
|
|
|
|
namespace app\common\model;
|
|
|
|
|
|
|
|
use cores\BaseModel;
|
|
|
|
use think\model\relation\HasOne;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 文章模型
|
|
|
|
* Class Article
|
|
|
|
* @package app\common\model
|
|
|
|
*/
|
|
|
|
class Channel extends BaseModel
|
|
|
|
{
|
|
|
|
// 定义表名
|
|
|
|
protected $name = 'channel';
|
|
|
|
|
|
|
|
// 定义主键
|
|
|
|
protected $pk = 'id';
|
|
|
|
|
|
|
|
public static function init()
|
|
|
|
{
|
|
|
|
// self::$storeId = 0;
|
|
|
|
// app()->request->setStoreId(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 关联logo图片
|
|
|
|
* @return HasOne
|
|
|
|
*/
|
|
|
|
public function logoImage(): HasOne
|
|
|
|
{
|
|
|
|
return $this->hasOne('UploadFile', 'file_id', 'logo_image_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 关联logo图片
|
|
|
|
* @return HasOne
|
|
|
|
*/
|
|
|
|
public function licenseImage(): HasMany
|
|
|
|
{
|
|
|
|
return $this->HasMany('UploadFile', 'file_id', 'license_img_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 菜单信息
|
|
|
|
* @param int|array $where
|
|
|
|
* @return static|array|null
|
|
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
|
|
* @throws \think\db\exception\DbException
|
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
|
|
*/
|
|
|
|
public static function detail($where)
|
|
|
|
{
|
|
|
|
$query = static::withoutGlobalScope();
|
|
|
|
is_array($where) ? $query->where($where) : $query->where('id', '=', $where);
|
|
|
|
return $query->find();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取列表数据
|
|
|
|
* @param bool $isRecycle
|
|
|
|
* @return \think\Paginator
|
|
|
|
* @throws \think\db\exception\DbException
|
|
|
|
*/
|
|
|
|
public function getList(array $param = [], int $pageSize = 15): \think\Paginator
|
|
|
|
{
|
|
|
|
return $this->with(['logoImage'])
|
|
|
|
->where('status', '=', 1)
|
|
|
|
->order(['weigh' => 'asc', 'id' => 'desc'])
|
|
|
|
->paginate($pageSize);
|
|
|
|
}
|
|
|
|
}
|