123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- namespace app\model\user\label;
- use crmeb\basic\BaseModel;
- use think\Model;
- class UserLabelCate extends BaseModel
- {
-
- protected $name = 'user_label_cate';
-
- protected $pk = 'id';
-
- public function searchNameAttr($query, $value)
- {
- $query->whereLike('name', '%' . $value . '%');
- }
-
- public function label()
- {
- return $this->hasMany(UserLabel::class, 'label_cate', 'id');
- }
-
- 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);
- }
- }
- }
|