123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace App\Models\Fpdx;
- use App\Models\Model;
- /**
- * App\Models\Fpdx\WxkfModel
- *
- * @property int $id
- * @property string $wxid 微信id|X
- * @property string $nickname 客服号名称
- * @property string $qrcode 二维码
- * @property int $day_limit 每日发码上限
- * @property int $day_add_limit 每日添加好友上限
- * @property int $hour_queue_cnt 小时级发送池数量
- * @property int $today_cnt 今日发出二维码|X
- * @property int $today_add_cnt 今日添加好友数量|X
- * @property int $replay_cnt 每日二维码弹出数量
- * @property int $friend_cnt 好友数量
- * @property int $sex 性别限制0不限1男2女
- * @property int $state 状态0下架1上架
- * @property \Illuminate\Support\Carbon $created_at
- * @property \Illuminate\Support\Carbon $updated_at
- * @property string|null $type 客服类型
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel query()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereDayAddLimit($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereDayLimit($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereFriendCnt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereHourQueueCnt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereNickname($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereQrcode($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereReplayCnt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereSex($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereState($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereTodayAddCnt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereTodayCnt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereType($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereUpdatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereWxid($value)
- * @mixin \Eloquent
- */
- class WxkfModel extends Model
- {
- public $table = "kdgx_fpdx_wxkf";
- public $dateFormat = 'U';
- public $fillable = [
- 'id',
- 'created_at',
- 'updated_at',
- 'wxid',
- 'type',
- 'nickname',
- 'qrcode',
- 'day_limit',
- 'today_cnt',
- 'replay_cnt',
- 'friend_cnt',
- 'state',
- 'sex'
- ];
- }
|