Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
125
pro_v3.5.1/app/model/system/attachment/SystemAttachment.php
Normal file
125
pro_v3.5.1/app/model/system/attachment/SystemAttachment.php
Normal file
@@ -0,0 +1,125 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2026 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);
|
||||
}
|
||||
|
||||
public function searchRealNameAttr($query, $value, $data)
|
||||
{
|
||||
if ($value !== '') $query->whereLike('real_name', "%$value%");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user