QuestionModel.php 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Models\Interlocution;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Interlocution\QuestionModel
  6. *
  7. * @property int $id
  8. * @property string $title 问题
  9. * @property \Illuminate\Support\Carbon $created_at 创建时间
  10. * @property \Illuminate\Support\Carbon $updated_at 修改时间
  11. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Interlocution\QuestionModel newModelQuery()
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Interlocution\QuestionModel newQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Interlocution\QuestionModel query()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Interlocution\QuestionModel whereCreatedAt($value)
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Interlocution\QuestionModel whereId($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Interlocution\QuestionModel whereTitle($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Interlocution\QuestionModel whereUpdatedAt($value)
  18. * @mixin \Eloquent
  19. */
  20. class QuestionModel extends Model
  21. {
  22. //
  23. protected $table = 'kdgx_fpdx_questions';
  24. protected $dateFormat = 'U';
  25. public $fillable = ['title'];
  26. }