From e57e32fc43da31917912eebb4e47d4e50df1a9e9 Mon Sep 17 00:00:00 2001
From: shiyj1101 <1098226878@qq.com>
Date: 星期四, 05 八月 2021 22:56:15 +0800
Subject: [PATCH] 完善格式化功能
---
service-acct/src/main/java/com/java110/acct/api/ShopVipAccountApi.java | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/service-acct/src/main/java/com/java110/acct/api/ShopVipAccountApi.java b/service-acct/src/main/java/com/java110/acct/api/ShopVipAccountApi.java
index 09a5b4f..c8090bc 100644
--- a/service-acct/src/main/java/com/java110/acct/api/ShopVipAccountApi.java
+++ b/service-acct/src/main/java/com/java110/acct/api/ShopVipAccountApi.java
@@ -1,4 +1,4 @@
-package com.java110.store.api;
+package com.java110.acct.api;
import com.alibaba.fastjson.JSONObject;
import com.java110.acct.bmo.shopVipAccount.IDeleteShopVipAccountBMO;
@@ -112,12 +112,14 @@
*/
@RequestMapping(value = "/queryShopVipAccount", method = RequestMethod.GET)
public ResponseEntity<String> queryShopVipAccount(@RequestParam(value = "shopId", required = false) String shopId,
+ @RequestParam(value = "vipId", required = false) String vipId,
@RequestParam(value = "page") int page,
@RequestParam(value = "row") int row) {
ShopVipAccountDto shopVipAccountDto = new ShopVipAccountDto();
shopVipAccountDto.setPage(page);
shopVipAccountDto.setRow(row);
shopVipAccountDto.setShopId(shopId);
+ shopVipAccountDto.setVipId(vipId);
return getShopVipAccountBMOImpl.get(shopVipAccountDto);
}
--
Gitblit v1.8.0