GroupMemberModel.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace App\Models\Fpdx;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Fpdx\GroupMemberModel
  6. *
  7. * @property int $id
  8. * @property int $uid
  9. * @property int $stage_id
  10. * @property string $activity_type 活动类型
  11. * @property string $type
  12. * @property int $group_id
  13. * @property \Illuminate\Support\Carbon $created_at
  14. * @property \Illuminate\Support\Carbon $updated_at
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel newModelQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel newQuery()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel query()
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel whereActivityType($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel whereCreatedAt($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel whereGroupId($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel whereId($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel whereStageId($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel whereType($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel whereUid($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupMemberModel whereUpdatedAt($value)
  26. * @mixin \Eloquent
  27. */
  28. class GroupMemberModel extends Model
  29. {
  30. //
  31. protected $table = 'fpdx_pair_group_members';
  32. protected $guarded = ['id'];
  33. protected $dateFormat = 'U';
  34. }