/*package com.landtool.lanbase.modules.api.controller;
|
|
import com.landtool.lanbase.common.map.EsbToken;
|
import com.landtool.lanbase.config.SysTemPropertyConfig;
|
import com.landtool.lanbase.modules.org.entity.OrgUser;
|
import com.landtool.lanbase.modules.org.service.OrgUserService;
|
import com.landtool.lanbase.modules.res.service.ResExtBaseMapService;
|
import com.landtool.lanbase.modules.res.service.ResExtMapUrlService;
|
import com.landtool.lanbase.modules.res.service.ZhuanTiZhiTuService;
|
import com.landtool.lanbase.modules.sys.entity.*;
|
import com.landtool.lanbase.modules.res.entity.Res_ExtBaseMap;
|
import com.landtool.lanbase.modules.res.entity.Res_ExtMapUrl;
|
import com.landtool.lanbase.modules.res.entity.UserDefined.UserDef_BaseMap;
|
import com.landtool.lanbase.modules.sys.service.*;
|
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiParam;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Controller;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
import javax.servlet.http.HttpServletRequest;
|
import java.util.List;
|
|
@Controller
|
@RequestMapping("/api/res/extbasemap")
|
@Api(value = "", tags = { "系统资源扩展(基础地图)" })
|
public class ResExtBaseMapApiController {
|
|
*//**
|
* 查询基础底图列表
|
*//*
|
@ResponseBody
|
@GetMapping("/queryExtBaseMapList")
|
@ApiOperation(value = "基础地图列表", notes = "")
|
public List<Res_ExtBaseMap> queryExtBaseMapList(
|
@ApiParam(name = "resourceid", value = "信息资源Id") Integer resourceid,
|
@ApiParam(name = "publishsoft", value = "发布平台") String publishsoft,
|
@ApiParam(name = "basemaptype", value = "底图类型") String basemaptype,
|
@ApiParam(name = "imageaccuracy", value = "影像精度") String imageaccuracy,
|
@ApiParam(name = "displaylev", value = "显示比例") String displaylev,
|
@ApiParam(name = "refmarkinfid", value = "关联标注图资源ID") Integer refmarkinfid,
|
@ApiParam(name = "extproperty", value = "扩展属性") String extproperty) {
|
Res_ExtBaseMap record = new Res_ExtBaseMap();
|
record.setResourceid(resourceid);
|
record.setPublishsoft(publishsoft);
|
record.setBasemaptype(basemaptype);
|
record.setImageaccuracy(imageaccuracy);
|
record.setDisplaylev(displaylev);
|
record.setRefmarkinfid(refmarkinfid);
|
record.setExtproperty(extproperty);
|
List<Res_ExtBaseMap> mapList = resExtBaseMapService.queryApiList(record);
|
for (Res_ExtBaseMap item : mapList) {
|
List<Res_ExtMapUrl> urlList = resExtMapUrlService.selectByCondition(item.getResourceid());
|
item.setUrllist(urlList);
|
}
|
return mapList;
|
}
|
|
}*/
|