TagModel.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Models\Goodnight;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Goodnight\TagModel
  6. *
  7. * @property int $id
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间
  9. * @property \Illuminate\Support\Carbon $updated_at 更新时间
  10. * @property int $voice_id 声音
  11. * @property int $uid 用户
  12. * @property string $tag 标签
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel newModelQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel newQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel query()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel whereCreatedAt($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel whereId($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel whereTag($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel whereUid($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel whereUpdatedAt($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\TagModel whereVoiceId($value)
  22. * @mixin \Eloquent
  23. */
  24. class TagModel extends Model
  25. {
  26. protected $table = 'kdgx_goodnight_voice_tag';
  27. protected $dateFormat = 'U';
  28. protected $fillable = ['voice_id', 'uid', 'tag'];
  29. }