ActivityModel.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace App\Models\Gteam;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Gteam\ActivityModel
  6. *
  7. * @property int $id
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间|预约开始时间
  9. * @property \Illuminate\Support\Carbon $updated_at 更新时间
  10. * @property int $match_end_at 预约结束时间
  11. * @property string $name 活动名称
  12. * @property string $ack 活动标志
  13. * @property string $type 预约类型wz:王者|cj:吃鸡
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel newModelQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel newQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel query()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel whereAck($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel whereCreatedAt($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel whereId($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel whereMatchEndAt($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel whereName($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel whereType($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Gteam\ActivityModel whereUpdatedAt($value)
  24. * @mixin \Eloquent
  25. */
  26. class ActivityModel extends Model
  27. {
  28. protected $table = 'kdgx_gteam_enter_activity';
  29. protected $dateFormat = 'U';
  30. protected $fillable = ['match_end_at', 'name', 'ack'];
  31. }