ci: 新增一个没有权限限制的联络人管理接口

This commit is contained in:
2024-02-25 17:03:06 +08:00
parent f70da62f80
commit 04cd2bea48
@@ -63,6 +63,27 @@ public class LawsContactManageController extends JeroController<LawsContactManag
return Result.OK(pageList);
}
/**
* 分页列表查询
*
* @param lawsContactManage
* @param pageNo
* @param pageSize
* @param req
* @return
*/
@AutoLog(value = "联络人管理-分页列表查询(不带权限)")
@ApiOperationSupport(order = 1)
@ApiOperation(value="联络人管理-分页列表查询(不带权限)", notes="联络人管理-分页列表查询(不带权限)")
@GetMapping(value = "/pageWP")
public Result<IPage<LawsContactManage>> queryPageListWithoutPermission(LawsContactManage lawsContactManage,
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
HttpServletRequest req) {
IPage<LawsContactManage> pageList = lawsContactManageService.queryPage(lawsContactManage, pageNo, pageSize, req);
return Result.OK(pageList);
}
/**
* 分页列表查询
*