123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- namespace app\model\order;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use app\model\activity\promotions\StorePromotions;
- use think\Model;
- class StoreOrderPromotions extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'store_order_promotions';
-
- public function promotions()
- {
- return $this->hasOne(StorePromotions::class, 'id', 'promotions_id');
- }
-
- public function searchOidAttr($query, $value, $data)
- {
- if ($value) {
- if (is_array($value)) {
- $query->whereIn('oid', $value);
- } else {
- $query->where('oid', $value);
- }
- }
- }
-
- public function searchUidIdAttr($query, $value)
- {
- if ($value) {
- if (is_array($value)) {
- $query->whereIn('uid', $value);
- } else {
- $query->where('uid', $value);
- }
- }
- }
-
- public function searchPromotionsIdAttr($query, $value)
- {
- if ($value) {
- if (is_array($value)) {
- $query->whereIn('promotions_id', $value);
- } else {
- $query->where('promotions_id', $value);
- }
- }
- }
- }
|