|
|
|
@ -5,6 +5,8 @@ import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import cn.hutool.http.HttpUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import com.glxp.udi.admin.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.udi.admin.dao.info.PlatformDao;
|
|
|
|
@ -67,14 +69,24 @@ public class PlatformService {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Page<PlatformEntity> list(Map<String, Object> map) {
|
|
|
|
|
Page<PlatformEntity> pageParam = new Page<>(-1, -1);
|
|
|
|
|
public IPage<PlatformEntity> list(Map<String, Object> map) {
|
|
|
|
|
QueryWrapper<PlatformEntity> wrapper = new QueryWrapper<>();
|
|
|
|
|
wrapper.eq(StrUtil.isNotBlank(String.valueOf(map.get("id"))), "id", map.get("id"))
|
|
|
|
|
.like(StrUtil.isNotBlank(String.valueOf(map.get("name"))), "name", map.get("name"))
|
|
|
|
|
.like(StrUtil.isNotBlank(String.valueOf(map.get("host"))), "host", map.get("host"));
|
|
|
|
|
|
|
|
|
|
if (map.get("page") != null && map.get("limit") != null) {
|
|
|
|
|
Integer page = Integer.valueOf(map.get("page").toString());
|
|
|
|
|
Integer limit = Integer.valueOf(map.get("limit").toString());
|
|
|
|
|
pageParam = new Page<>(page, limit);
|
|
|
|
|
IPage<PlatformEntity> pageParam = new Page<>(page, limit);
|
|
|
|
|
return platformDao.selectPage(pageParam, wrapper);
|
|
|
|
|
} else {
|
|
|
|
|
List<PlatformEntity> list = platformDao.selectList(wrapper);
|
|
|
|
|
IPage<PlatformEntity> pageResult = new Page<>();
|
|
|
|
|
pageResult.setTotal(list.size());
|
|
|
|
|
pageResult.setRecords(list);
|
|
|
|
|
return pageResult;
|
|
|
|
|
}
|
|
|
|
|
return platformDao.list(pageParam, map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int count(Map<String, Object> map) {
|
|
|
|
|