From a093b470d5f9ce57c05ad610312d4af69688a18b Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期六, 07 十月 2023 15:01:32 +0800 Subject: [PATCH] 添加地块实体类、Mapper映射类 --- src/main/java/com/smartearth/poiexcel/controller/EntController.java | 33 ++++++++++++++++++++++----------- 1 files changed, 22 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/smartearth/poiexcel/controller/EntController.java b/src/main/java/com/smartearth/poiexcel/controller/EntController.java index 6cc888a..3d71423 100644 --- a/src/main/java/com/smartearth/poiexcel/controller/EntController.java +++ b/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,11 +40,23 @@ @Resource EntMapper entMapper; - @Resource - QiYeMapper qiYeMapper; - @Value("${address.code.url}") private String addressCodeUrl; + + @ApiOperation(value = "鏍规嵁鍚嶇О妯$硦鏌ヨ浼佷笟") + @ApiImplicitParams({ + @ApiImplicitParam(name = "name", value = "浼佷笟鍚嶇О鎴栧湴鍧�", dataType = "String", paramType = "query", example = "") + }) + @GetMapping({"/selectByName"}) + public ResponseMsg<Object> selectByName(String name) { + try { + List<EntEntity> list = entMapper.selectByName(StringHelper.getLikeStr(name)); + + return success(null == list ? 0 : list.size(), list); + } catch (Exception ex) { + return fail(ex, -1); + } + } @ApiOperation(value = "鏌ヨ浠ょ墝") @GetMapping({"/selectToken"}) @@ -59,7 +70,7 @@ } } - @ApiOperation(value = "鏌ヨ浼佷笟") + @ApiOperation(value = "鏌ヨ浼佷笟淇℃伅") @ApiImplicitParams({ @ApiImplicitParam(name = "token", value = "浠ょ墝", dataType = "String", paramType = "query", example = ""), @ApiImplicitParam(name = "startDate", value = "寮�濮嬫棩鏈�", dataType = "String", paramType = "query", example = "2023-06-29"), @@ -130,7 +141,7 @@ } } - @ApiOperation(value = "鍒嗛〉鏌ヨ") + @ApiOperation(value = "鍒嗛〉鏌ヨ浼佷笟") @ApiImplicitParams({ @ApiImplicitParam(name = "pageSize", value = "姣忛〉鏉℃暟", dataType = "Integer", paramType = "query", example = "10"), @ApiImplicitParam(name = "pageIndex", value = "鍒嗛〉鏁帮紙浠�1寮�濮嬶級", dataType = "Integer", paramType = "query", example = "1") @@ -144,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) { @@ -158,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; } @@ -176,7 +187,7 @@ } } - rows += qiYeMapper.updates(list); + rows += entMapper.updates(list); } return success(rows); -- Gitblit v1.9.3