CustomPushActivitys.php 419 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Modules\OfficialAccount\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CustomPushActivitys extends Model
  5. {
  6. protected $table = 'custom_push_activitys';
  7. protected $fillable = ['title','url','image','activity_id','product_id'];
  8. /**
  9. * 获取配置信息
  10. */
  11. static function customPushActivitys()
  12. {
  13. return self::select()->first();
  14. }
  15. }