You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/common/model/Channel.php

84 lines
2.4 KiB

9 months ago
<?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;
6 months ago
use think\model\relation\HasOne;
9 months ago
/**
* 文章模型
* Class Article
* @package app\common\model
*/
class Channel extends BaseModel
{
// 定义表名
protected $name = 'channel';
// 定义主键
protected $pk = 'id';
8 months ago
public static function init()
{
7 months ago
// self::$storeId = 0;
// app()->request->setStoreId(0);
8 months ago
}
6 months ago
6 months ago
/**
* 关联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');
}
6 months ago
/**
* 菜单信息
* @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();
}
6 months ago
/**
* 获取列表数据
* @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)
6 months ago
->order(['weigh' => 'asc', 'id' => 'desc'])
6 months ago
->paginate($pageSize);
}
9 months ago
}