Commit 8482cc8d by guojuxing

场景分页查询修复

parent 6c999cbc
......@@ -103,7 +103,7 @@ public class ConfigRuleApiServiceImpl implements ConfigRuleApiService {
public ServiceResponse<com.gic.api.base.commons.Page<RuleClassifySceneDTO>> listRuleClassifyScene(String search,
Integer ruleId, Integer pageNum, Integer pageSize) {
Page<TabConfigRule> page = configRuleService.listRule(search, 3, ruleId, pageNum, pageSize);
com.gic.api.base.commons.Page resultPage = PageHelperUtils.changePageHelperToCurrentPage(page, RuleClassifyDTO.class);
com.gic.api.base.commons.Page resultPage = PageHelperUtils.changePageHelperToCurrentPage(page, RuleClassifySceneDTO.class);
return ServiceResponse.success(resultPage);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment