From 37b3e61ccad4bdb51e9ce61002175a62259feb61 Mon Sep 17 00:00:00 2001 From: Derran Date: Fri, 11 Jul 2025 17:37:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=90=8C=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../query/contract/user/ContractUserQueryController.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/contract/user/ContractUserQueryController.java b/dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/contract/user/ContractUserQueryController.java index d16021d..a746756 100644 --- a/dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/contract/user/ContractUserQueryController.java +++ b/dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/contract/user/ContractUserQueryController.java @@ -30,4 +30,13 @@ public class ContractUserQueryController { return PageUtil.convert(contractQueryService.pageCustomizedServiceContract(queryParams, pageUtil), UserPageCustomizedServiceContractVo.class); } + @GetMapping("page/customized-service-contract") + @ApiOperation("用户查询合同列表 -- 平台") + public QnPage userPageCustomizedServiceContract(PageUtil pageUtil, + UserPageCustomizedServiceContractQueryParams queryParams, + @RequestParam(value = "userId") Long userId, + @RequestHeader(name = RequestHeaderFields.FIELD_ORGANIZATION_ID) Long orgId) { + return PageUtil.convert(contractQueryService.pageCustomizedServiceContract(queryParams, pageUtil), UserPageCustomizedServiceContractVo.class); + } + }