OpenidUserModel.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace App\Models\User;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\User\OpenidUserModel
  6. *
  7. * @property int $id
  8. * @property string $openid 用户openid
  9. * @property string|null $phone 手机号
  10. * @property string|null $age 生日:年-月-日
  11. * @property int|null $sex 性别1男2女
  12. * @property int|null $feed_sex 首页性别
  13. * @property int|null $feed_dis 首页筛选距离
  14. * @property int|null $is_auto_expand 是否自动扩大
  15. * @property float|null $lng 经度
  16. * @property float|null $lat 纬度
  17. * @property string|null $location 地理位置
  18. * @property \Illuminate\Support\Carbon|null $created_at 创建放假
  19. * @property int|null $sync_at 同步时间
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel newModelQuery()
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel newQuery()
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel query()
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereAge($value)
  24. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereCreatedAt($value)
  25. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereFeedDis($value)
  26. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereFeedSex($value)
  27. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereId($value)
  28. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereIsAutoExpand($value)
  29. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereLat($value)
  30. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereLng($value)
  31. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereLocation($value)
  32. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereOpenid($value)
  33. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel wherePhone($value)
  34. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereSex($value)
  35. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\OpenidUserModel whereSyncAt($value)
  36. * @mixin \Eloquent
  37. */
  38. class OpenidUserModel extends Model
  39. {
  40. protected $table = "kdgx_fpdx_openid_user";
  41. protected $dateFormat = 'U';
  42. public const UPDATED_AT = null;
  43. public $fillable = ['openid', 'age', 'sex', 'phone', 'feed_sex', 'feed_dis', 'is_auto_expand', 'lng', 'lat', 'location', 'sync_at'];
  44. }