java110
2023-08-15 20001a775126c1be95a2b84cebb8813a54608712
java110-interface/src/main/java/com/java110/intf/acct/IShopVipAccountInnerServiceSMO.java
@@ -1,8 +1,9 @@
package com.java110.intf.acct;
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.shopVipAccount.ShopVipAccountDto;
import com.java110.po.shopVipAccount.ShopVipAccountPo;
import com.java110.dto.shop.ShopVipAccountDto;
import com.java110.po.shop.ShopVipAccountPo;
import com.java110.po.shop.ShopVipAccountDetailPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -50,4 +51,20 @@
     */
    @RequestMapping(value = "/queryShopVipAccountsCount", method = RequestMethod.POST)
    int queryShopVipAccountsCount(@RequestBody ShopVipAccountDto shopVipAccountDto);
    /**
     * 预存金额
     * @param accountDetailPo
     * @return
     */
    @RequestMapping(value = "/prestoreAccount", method = RequestMethod.POST)
    int prestoreAccount(@RequestBody ShopVipAccountDetailPo accountDetailPo);
    /**
     * 扣款金额
     * @param accountDetailPo
     * @return
     */
    @RequestMapping(value = "/withholdAccount", method = RequestMethod.POST)
    int withholdAccount(@RequestBody ShopVipAccountDetailPo accountDetailPo);
}