北京经济技术开发区经开区虚拟城市项目-【后端】-服务,Poi,企业,地块等定制接口
13693261870
2023-10-07 a093b470d5f9ce57c05ad610312d4af69688a18b
src/main/java/com/smartearth/poiexcel/controller/EntController.java
@@ -6,7 +6,6 @@
import com.smartearth.poiexcel.entity.ResponseMsg;
import com.smartearth.poiexcel.entity.StaticData;
import com.smartearth.poiexcel.mapper.EntMapper;
import com.smartearth.poiexcel.mapper.QiYeMapper;
import com.smartearth.poiexcel.service.EntService;
import com.smartearth.poiexcel.utils.HttpUtils;
import com.smartearth.poiexcel.utils.StringHelper;
@@ -41,9 +40,6 @@
    @Resource
    EntMapper entMapper;
    @Resource
    QiYeMapper qiYeMapper;
    @Value("${address.code.url}")
    private String addressCodeUrl;
@@ -54,7 +50,7 @@
    @GetMapping({"/selectByName"})
    public ResponseMsg<Object> selectByName(String name) {
        try {
            List<EntEntity> list = qiYeMapper.selectByName(StringHelper.getLikeStr(name));
            List<EntEntity> list = entMapper.selectByName(StringHelper.getLikeStr(name));
            return success(null == list ? 0 : list.size(), list);
        } catch (Exception ex) {
@@ -159,8 +155,8 @@
            if (null == pageIndex || pageIndex < 1) {
                pageIndex = 1;
            }
            int count = qiYeMapper.selectCount();
            List<EntEntity> list = qiYeMapper.selectByPage(pageSize, StaticData.I100 * (pageIndex - 1));
            int count = entMapper.selectCount();
            List<EntEntity> list = entMapper.selectByPage(pageSize, StaticData.I100 * (pageIndex - 1));
            return success(count, list);
        } catch (Exception ex) {
@@ -173,14 +169,14 @@
    public ResponseMsg<Object> updateCoords() {
        try {
            int rows = 0;
            int count = qiYeMapper.selectCount();
            int count = entMapper.selectCount();
            if (0 == count) {
                return success("没有数据需要更新", count);
            }
            int pages = (count - 1) / StaticData.I100 + 1;
            for (int i = 1; i <= pages; i++) {
                List<EntEntity> list = qiYeMapper.selectByPage(StaticData.I100, StaticData.I100 * (i - 1));
                List<EntEntity> list = entMapper.selectByPage(StaticData.I100, StaticData.I100 * (i - 1));
                if (null == list || list.isEmpty()) {
                    continue;
                }
@@ -191,7 +187,7 @@
                    }
                }
                rows += qiYeMapper.updates(list);
                rows += entMapper.updates(list);
            }
            return success(rows);