SystemTagModel.php 1.4 KB

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