From aa2d520a06c371e76ef26c78d426a01fca76a2fc Mon Sep 17 00:00:00 2001 From: zhangc <zc@123> Date: 星期五, 07 二月 2025 14:56:35 +0800 Subject: [PATCH] 1 --- src/main/java/com/zy/system/controller/ApiController.java | 27 ++++++++++++++------------- 1 files changed, 14 insertions(+), 13 deletions(-) diff --git a/src/main/java/com/zy/system/controller/ApiController.java b/src/main/java/com/zy/system/controller/ApiController.java index e1f16f8..d07ae5f 100644 --- a/src/main/java/com/zy/system/controller/ApiController.java +++ b/src/main/java/com/zy/system/controller/ApiController.java @@ -3,20 +3,20 @@ import com.alibaba.fastjson.JSONObject; import com.baomidou.mybatisplus.mapper.EntityWrapper; import com.baomidou.mybatisplus.plugins.Page; -import com.zy.system.entity.Api; -import com.zy.system.service.ApiService; import com.core.annotations.ManagerAuth; import com.core.common.Cools; import com.core.common.DateUtils; import com.core.common.R; -import com.core.controller.AbstractBaseController; +import com.zy.common.web.BaseController; +import com.zy.system.entity.Api; +import com.zy.system.service.ApiService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.*; @RestController -public class ApiController extends AbstractBaseController { +public class ApiController extends BaseController { @Autowired private ApiService apiService; @@ -41,14 +41,15 @@ return R.ok(apiService.selectPage(new Page<>(curr, limit), wrapper)); } - private void convert(Map<String, Object> map, EntityWrapper wrapper){ + private <T> void convert(Map<String, Object> map, EntityWrapper<T> wrapper){ for (Map.Entry<String, Object> entry : map.entrySet()){ - if (entry.getKey().endsWith(">")) { - wrapper.ge(Cools.deleteChar(entry.getKey()), DateUtils.convert(String.valueOf(entry.getValue()))); - } else if (entry.getKey().endsWith("<")) { - wrapper.le(Cools.deleteChar(entry.getKey()), DateUtils.convert(String.valueOf(entry.getValue()))); + String val = String.valueOf(entry.getValue()); + if (val.contains(RANGE_TIME_LINK)){ + String[] dates = val.split(RANGE_TIME_LINK); + wrapper.ge(entry.getKey(), DateUtils.convert(dates[0])); + wrapper.le(entry.getKey(), DateUtils.convert(dates[1])); } else { - wrapper.like(entry.getKey(), String.valueOf(entry.getValue())); + wrapper.like(entry.getKey(), val); } } } @@ -57,7 +58,7 @@ @ManagerAuth public R edit(Api api) { if (Cools.isEmpty(api)){ - return R.error(); + return R.error("鍙傛暟缂哄け"); } if (null == api.getId()){ apiService.insert(api); @@ -78,7 +79,7 @@ @ManagerAuth public R update(Api api){ if (Cools.isEmpty(api) || null==api.getId()){ - return R.error(); + return R.error("鍙傛暟缂哄け"); } apiService.updateById(api); return R.ok(); @@ -88,7 +89,7 @@ @ManagerAuth public R delete(Integer[] ids){ if (Cools.isEmpty(ids)){ - return R.error(); + return R.error("鍙傛暟缂哄け"); } apiService.deleteBatchIds(Arrays.asList(ids)); return R.ok(); -- Gitblit v1.9.1