ci: 新增一个没有权限限制的联络人管理接口
This commit is contained in:
+21
@@ -63,6 +63,27 @@ public class LawsContactManageController extends JeroController<LawsContactManag
|
|||||||
return Result.OK(pageList);
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分页列表查询
|
* 分页列表查询
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user