RoomMasterModel.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Models\Fpdx;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Fpdx\RoomMasterModel
  6. *
  7. * @property int $id 主键
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间
  9. * @property \Illuminate\Support\Carbon|null $updated_at 更新时间
  10. * @property int|null $room_id 房间id
  11. * @property int|null $uid 房主uid
  12. * @property int|null $type 管理级别:1房主;2管理员
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel newModelQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel newQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel query()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel whereCreatedAt($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel whereId($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel whereRoomId($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel whereType($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel whereUid($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\RoomMasterModel whereUpdatedAt($value)
  22. * @mixin \Eloquent
  23. */
  24. class RoomMasterModel extends Model
  25. {
  26. protected $table = 'kdgx_fpdx_room_master';
  27. public $dateFormat = 'U';
  28. protected $fillable = ['room_id', 'uid', 'type'];
  29. }