|
@@ -7,10 +7,7 @@ import com.steerinfo.dil.util.ColumnDataUtil;
|
|
|
import com.steerinfo.dil.util.PageListAdd;
|
|
|
import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
import com.steerinfo.framework.service.pagehelper.PageHelper;
|
|
|
-import io.swagger.annotations.ApiImplicitParam;
|
|
|
-import io.swagger.annotations.ApiImplicitParams;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
-import io.swagger.annotations.ApiOperation;
|
|
|
+import io.swagger.annotations.*;
|
|
|
import io.swagger.models.auth.In;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -845,4 +842,11 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
public Map<String,Object>getCapacityTel(BigDecimal capacityId){
|
|
|
return universalMapper.getCapacityTel(capacityId);
|
|
|
}
|
|
|
+
|
|
|
+ //根据收货客户userId,查询收货客户信息
|
|
|
+ @ApiOperation(value = "根据userId查询收货客户信息")
|
|
|
+ @GetMapping("/getConsigneeByuserid")
|
|
|
+ public Map<String,Object>getConsigneeByuserid(String userId){
|
|
|
+ return universalMapper.getConsigneeByuserid(userId);
|
|
|
+ }
|
|
|
}
|