12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace App\Models\Fpdx;
- use Illuminate\Database\Eloquent\Model;
- /**
- * App\Models\Fpdx\GroupModel
- *
- * @property int $id
- * @property int $stage_id 期数
- * @property string $activity_type 活动类型
- * @property string $type
- * @property string $group_name 群名称
- * @property int $number 容量
- * @property string $qrcode
- * @property int $qq_group_number qq群号码
- * @property int $total_number 成员数
- * @property \Illuminate\Support\Carbon $created_at
- * @property \Illuminate\Support\Carbon $updated_at
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel query()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereActivityType($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereGroupName($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereNumber($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereQqGroupNumber($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereQrcode($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereStageId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereTotalNumber($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereType($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\GroupModel whereUpdatedAt($value)
- * @mixin \Eloquent
- */
- class GroupModel extends Model
- {
- //
- protected $table = 'fpdx_pair_groups';
- protected $fillable = ['group_name', 'stage_id', 'activity_type', 'number', 'qrcode', 'type', 'qq_group_number'];
- protected $dateFormat = 'U';
- }
|