|
|
|
@ -1,6 +1,7 @@ |
|
|
|
package com.research.web.controller.client.project; |
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil; |
|
|
|
import cn.hutool.core.collection.CollUtil; |
|
|
|
import cn.hutool.core.util.IdUtil; |
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
import com.alibaba.fastjson2.JSONObject; |
|
|
|
@ -42,10 +43,7 @@ import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.HashMap; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
import java.util.*; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Author zzc |
|
|
|
@ -91,7 +89,8 @@ public class GroupController { |
|
|
|
// if (query.getPageNum() > 0) {
|
|
|
|
// PageHelper.startPage(query.getPageNum(), query.getPageSize());
|
|
|
|
// }
|
|
|
|
return JsonResponse.ok(new PageInfo<>(ktsGroupService.childList(query.getParam()))); |
|
|
|
List<GroupVO.Result> results = ktsGroupService.childList(query.getParam()); |
|
|
|
return JsonResponse.ok(new PageInfo<>(results)); |
|
|
|
} |
|
|
|
|
|
|
|
@PostMapping("/add") |
|
|
|
|