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.
76 lines
2.0 KiB
76 lines
2.0 KiB
10 months ago
|
<?php
|
||
|
declare (strict_types=1);
|
||
|
|
||
|
namespace app\common\model\server;
|
||
|
|
||
|
use app\common\model\UploadFile;
|
||
|
use cores\BaseModel;
|
||
|
use think\db\exception\DbException;
|
||
|
use think\model\concern\SoftDelete;
|
||
|
use think\model\relation\HasOne;
|
||
|
use think\Paginator;
|
||
|
|
||
|
class ServerRecovery extends BaseModel
|
||
|
{
|
||
|
// 定义表名
|
||
|
protected $name = 'server_recovery';
|
||
|
|
||
|
// 定义主键
|
||
|
protected $pk = 'recovery_id';
|
||
|
|
||
|
use SoftDelete;
|
||
|
|
||
|
protected string $deleteTime = 'delete_time';
|
||
|
protected $defaultSoftDelete = 0;
|
||
|
|
||
|
/**
|
||
|
* 图片
|
||
|
* @return HasOne
|
||
|
*/
|
||
|
public function image(): HasOne
|
||
|
{
|
||
|
return $this->hasOne(UploadFile::class, 'file_id', 'image_id')
|
||
|
->bind(['recovery_image' => 'preview_url']);
|
||
|
}
|
||
|
|
||
|
public function category(): HasOne
|
||
|
{
|
||
|
return $this->hasOne(RecoveryCategory::class, 'category_id', 'category_id')
|
||
|
->bind(['recovery_category' => 'name']);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @notes:回收详情
|
||
|
* @param $where
|
||
|
* @param array $with
|
||
|
* @return static|array|null
|
||
|
* @author: wanghousheng
|
||
|
*/
|
||
|
public static function detail($where, array $with = [])
|
||
|
{
|
||
|
return static::get($where, $with);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @notes:获取全部记录
|
||
|
* @param array $where
|
||
|
* @param int $listRows
|
||
|
* @param string $sort
|
||
|
* @param string $sort_type
|
||
|
* @return Paginator
|
||
|
* @throws DbException
|
||
|
* @author: wanghousheng
|
||
|
*/
|
||
|
public function getList(array $where = [], int $listRows = 15, string $sort = '', string $sort_type = 'desc'): Paginator
|
||
|
{
|
||
|
$where = $this->setQueryDefaultValue($where);
|
||
|
$sort_arr = ['sort' => $sort_type, 'create_time' => $sort_type];
|
||
|
if ($sort) {
|
||
|
$sort_arr = [$sort => $sort_type, 'create_time' => $sort_type];
|
||
|
}
|
||
|
return $this->with(['image'])->withJoin(['category' => ['category_id', 'name']])
|
||
|
->where($where)
|
||
|
->order($sort_arr)
|
||
|
->paginate($listRows);
|
||
|
}
|
||
|
}
|