|
@ -21,9 +21,9 @@ import java.util.Map; |
|
|
@RequestMapping("/data") |
|
|
@RequestMapping("/data") |
|
|
public class DataQueryController { |
|
|
public class DataQueryController { |
|
|
|
|
|
|
|
|
// TODO 查询方法
|
|
|
|
|
|
@PostMapping("/query") |
|
|
@PostMapping("/query") |
|
|
public ResultVo<Map<String, Object>> query(DataQueryDTO queryDTO) { |
|
|
public ResultVo<Map<String, Object>> query(DataQueryDTO queryDTO) { |
|
|
|
|
|
// TODO 编写你的查询业务逻辑。。。
|
|
|
return ResultVo.ok(null); |
|
|
return ResultVo.ok(null); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|