package com.xzx.gc.model.user; import com.xzx.gc.common.dto.Page; import io.swagger.annotations.Api; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class UserRecommendParamDTO { @ApiModelProperty("经度") private String longitude; @ApiModelProperty("纬度") private String latitude; @ApiModelProperty("登录用户地址Id") private Long addressId; @ApiModelProperty(" 1:混合推荐回收员和集货员 2:推荐回收员") private int type; }