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.
121 lines
2.8 KiB
121 lines
2.8 KiB
2 months ago
|
<?php
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author: CRMEB Team <admin@crmeb.com>
|
||
|
// +----------------------------------------------------------------------
|
||
|
|
||
|
namespace app\model\system\attachment;
|
||
|
|
||
|
use crmeb\basic\BaseModel;
|
||
|
use crmeb\traits\ModelTrait;
|
||
|
use think\Model;
|
||
|
|
||
|
/**
|
||
|
* 附件管理模型
|
||
|
* Class SystemAttachment
|
||
|
* @package app\model\system\attachment
|
||
|
*/
|
||
|
class SystemAttachment extends BaseModel
|
||
|
{
|
||
|
use ModelTrait;
|
||
|
|
||
|
/**
|
||
|
* 数据表主键
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $pk = 'att_id';
|
||
|
|
||
|
/**
|
||
|
* 模型名称
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $name = 'system_attachment';
|
||
|
|
||
|
/**
|
||
|
* 图片类型搜索器
|
||
|
* @param Model $query
|
||
|
* @param $value
|
||
|
*/
|
||
|
public function searchModuleTypeAttr($query, $value)
|
||
|
{
|
||
|
$query->where('module_type', $value ?: 1);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* pid搜索器
|
||
|
* @param Model $query
|
||
|
* @param $value
|
||
|
*/
|
||
|
public function searchPidAttr($query, $value)
|
||
|
{
|
||
|
if ($value) $query->where('pid', $value);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* name模糊搜索
|
||
|
* @param Model $query
|
||
|
* @param $value
|
||
|
*/
|
||
|
public function searchLikeNameAttr($query, $value)
|
||
|
{
|
||
|
if ($value) $query->where('name','LIKE' ,"$value%");
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* type搜索器
|
||
|
* @param Model $query
|
||
|
* @param $value
|
||
|
*/
|
||
|
public function searchTypeAttr($query, $value)
|
||
|
{
|
||
|
if (is_array($value)) {
|
||
|
if ($value) $query->whereIn('type', $value);
|
||
|
} else {
|
||
|
if ($value !== '') $query->where('type', $value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 关联门店ID、供应商ID搜索器
|
||
|
* @param Model $query
|
||
|
* @param $value
|
||
|
*/
|
||
|
public function searchRelationIdAttr($query, $value)
|
||
|
{
|
||
|
if (is_array($value)) {
|
||
|
if ($value) $query->whereIn('relation_id', $value);
|
||
|
} else {
|
||
|
if ($value !== '') $query->where('relation_id', $value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* FileType搜索器
|
||
|
* @param Model $query
|
||
|
* @param $value
|
||
|
*/
|
||
|
public function searchFileTypeAttr($query, $value)
|
||
|
{
|
||
|
if (is_array($value)) {
|
||
|
if ($value) $query->whereIn('file_type', $value);
|
||
|
} else {
|
||
|
if ($value !== '') $query->where('file_type', $value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* store_id搜索器
|
||
|
* @param Model $query
|
||
|
* @param $value
|
||
|
*/
|
||
|
public function searchStoreIdAttr($query, $value)
|
||
|
{
|
||
|
if ($value !== '') $query->where('relation_id', $value)->where('type', 1);
|
||
|
}
|
||
|
}
|