Commit 50f0d228 by 王力

Merge branch 'dev_bussiness_layer0726' into 'develop'

参数类型变更int-long

See merge request !283
2 parents d06ccd01 3b2a48d0
......@@ -27,7 +27,7 @@ public class BusinessBlockController {
*/
@GetMapping("/business/service/block/list")
public Result<?> businessSeverBlocks(@RequestParam String levelType, @RequestParam String levelValue,
@RequestParam int page, @RequestParam int size,
@RequestParam long page, @RequestParam long size,
@RequestParam(required = false) String layerId,
@RequestParam(required = false) String teamId) {
Result<?> res=null;
......
......@@ -4,7 +4,7 @@ import com.dituhui.pea.common.Result;
public interface BusinessBlockService {
Result<?> businessServerBlocks(String levelType, String levelValue, int page, int size, String layerId, String teamId);
Result<?> businessServerBlocks(String levelType, String levelValue, long page, long size, String layerId, String teamId);
Result<?> businessServiceBlockAdd(String layerId, String teamId);
......
......@@ -36,7 +36,7 @@ public class BusinessBlockServiceImpl implements BusinessBlockService {
private OrgGroupMPDao orgGroupMPDao;
@Override
public Result<?> businessServerBlocks(String levelType, String levelValue, int page, int size, String layerId, String teamId) {
public Result<?> businessServerBlocks(String levelType, String levelValue, long page, long size, String layerId, String teamId) {
BusinessServerBlocksRespDTO resp = new BusinessServerBlocksRespDTO();
LambdaQueryWrapper<OrgTeam> lqwTeam = new LambdaQueryWrapper<>();
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!