2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*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;
    }
 
}*/