PromotionGroupConfig.php 388 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Modules\Sys\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class PromotionGroupConfig extends Model
  5. {
  6. protected $table = 'promotion_groups_configs';
  7. protected $guarded = [];
  8. private $platform = 'ZSY';
  9. /**
  10. * 获取追书云配置项
  11. */
  12. public function filter()
  13. {
  14. return self::where('platform', $this->platform);
  15. }
  16. }