MediaKeyModel.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Models\Fpdx;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Fpdx\MediaKeyModel
  6. *
  7. * @property int $id 主键
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间
  9. * @property \Illuminate\Support\Carbon $updated_at 更新时间
  10. * @property string $media_id 公众号id
  11. * @property string $app 应用
  12. * @property string $plat 平台
  13. * @property string|null $keywords 关键词
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel newModelQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel newQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel query()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel whereApp($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel whereCreatedAt($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel whereId($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel whereKeywords($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel whereMediaId($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel wherePlat($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\MediaKeyModel whereUpdatedAt($value)
  24. * @mixin \Eloquent
  25. */
  26. class MediaKeyModel extends Model
  27. {
  28. protected $table = "kdgx_media_key";
  29. protected $fillable = ['media_id', 'app', 'plat', 'keywords'];
  30. protected $dateFormat = 'U';
  31. }