123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- namespace app\model\store;
- use app\model\user\User;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\Model;
- class StoreConfig extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'store_config';
-
- 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 searchSupplierIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('relation_id', $value)->where('type', 2);
- } else {
- if ($value !== '') $query->where('relation_id', $value)->where('type', 2);
- }
- }
-
- public function searchStoreIdAttr($query, $value)
- {
- if (is_array($value)) {
- if ($value) $query->whereIn('relation_id', $value)->where('type', 1);
- } else {
- if ($value !== '') $query->where('relation_id', $value)->where('type', 1);
- }
- }
-
- public function searchKeyNameAttr($query, $value)
- {
- if ($value !== '') {
- $query->where('key_name', $value);
- }
- }
- }
|