123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php
- namespace app\model\system\attachment;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\Model;
- class SystemAttachment extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'att_id';
-
- protected $name = 'system_attachment';
-
- public function searchModuleTypeAttr($query, $value)
- {
- $query->where('module_type', $value ?: 1);
- }
-
- public function searchPidAttr($query, $value)
- {
- if ($value) $query->where('pid', $value);
- }
-
- public function searchLikeNameAttr($query, $value)
- {
- if ($value) $query->where('name','LIKE' ,"$value%");
- }
-
- public function searchTypeAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('type', $value);
- } else {
- if ($value !== '') $query->where('type', $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);
- }
- }
-
- public function searchFileTypeAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('file_type', $value);
- } else {
- if ($value !== '') $query->where('file_type', $value);
- }
- }
-
- public function searchStoreIdAttr($query, $value)
- {
- if ($value !== '') $query->where('relation_id', $value)->where('type', 1);
- }
- }
|