WxkfModel.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace App\Models\Fpdx;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Fpdx\WxkfModel
  6. *
  7. * @property int $id
  8. * @property string $wxid 微信id|X
  9. * @property string $nickname 客服号名称
  10. * @property string $qrcode 二维码
  11. * @property int $day_limit 每日发码上限
  12. * @property int $day_add_limit 每日添加好友上限
  13. * @property int $hour_queue_cnt 小时级发送池数量
  14. * @property int $today_cnt 今日发出二维码|X
  15. * @property int $today_add_cnt 今日添加好友数量|X
  16. * @property int $replay_cnt 每日二维码弹出数量
  17. * @property int $friend_cnt 好友数量
  18. * @property int $sex 性别限制0不限1男2女
  19. * @property int $state 状态0下架1上架
  20. * @property \Illuminate\Support\Carbon $created_at
  21. * @property \Illuminate\Support\Carbon $updated_at
  22. * @property string|null $type 客服类型
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel newModelQuery()
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel newQuery()
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel query()
  26. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereCreatedAt($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereDayAddLimit($value)
  28. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereDayLimit($value)
  29. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereFriendCnt($value)
  30. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereHourQueueCnt($value)
  31. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereId($value)
  32. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereNickname($value)
  33. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereQrcode($value)
  34. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereReplayCnt($value)
  35. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereSex($value)
  36. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereState($value)
  37. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereTodayAddCnt($value)
  38. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereTodayCnt($value)
  39. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereType($value)
  40. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereUpdatedAt($value)
  41. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\WxkfModel whereWxid($value)
  42. * @mixin \Eloquent
  43. */
  44. class WxkfModel extends Model
  45. {
  46. public $table = "kdgx_fpdx_wxkf";
  47. public $dateFormat = 'U';
  48. public $fillable = [
  49. 'id',
  50. 'created_at',
  51. 'updated_at',
  52. 'wxid',
  53. 'type',
  54. 'nickname',
  55. 'qrcode',
  56. 'day_limit',
  57. 'today_cnt',
  58. 'replay_cnt',
  59. 'friend_cnt',
  60. 'state',
  61. 'sex'
  62. ];
  63. }