java110
2022-05-24 3721d9e4c1f79b7b38d89db3a73c62135640be64
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;
@@ -9,8 +9,9 @@
import com.java110.acct.bmo.shopVipAccountDetail.IGetShopVipAccountDetailBMO;
import com.java110.acct.bmo.shopVipAccountDetail.ISaveShopVipAccountDetailBMO;
import com.java110.acct.bmo.shopVipAccountDetail.IUpdateShopVipAccountDetailBMO;
import com.java110.dto.shopVipAccount.ShopUserAccountVipDto;
import com.java110.dto.shopVipAccount.ShopVipAccountDto;
import com.java110.dto.shopVipAccountDetail.ShopVipAccountDetailDto;
import com.java110.dto.shopVipAccount.ShopVipAccountDetailDto;
import com.java110.po.shopVipAccount.ShopVipAccountPo;
import com.java110.po.shopVipAccountDetail.ShopVipAccountDetailPo;
import com.java110.utils.util.Assert;
@@ -112,12 +113,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);
    }
@@ -198,4 +201,7 @@
        shopVipAccountDetailDto.setShopId(shopId);
        return getShopVipAccountDetailBMOImpl.get(shopVipAccountDetailDto);
    }
}