java110
2022-06-28 22e8a676ee42c0d78b3526bcd9a635abbe8dca03
java110-interface/src/main/java/com/java110/intf/acct/IShopVipAccountDetailInnerServiceSMO.java
@@ -1,7 +1,7 @@
package com.java110.intf.acct;
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.shopVipAccountDetail.ShopVipAccountDetailDto;
import com.java110.dto.shopVipAccount.ShopVipAccountDetailDto;
import com.java110.po.shopVipAccountDetail.ShopVipAccountDetailPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
@@ -18,7 +18,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "acct-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.acct-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/shopVipAccountDetailApi")
public interface IShopVipAccountDetailInnerServiceSMO {
@@ -50,4 +50,7 @@
     */
    @RequestMapping(value = "/queryShopVipAccountDetailsCount", method = RequestMethod.POST)
    int queryShopVipAccountDetailsCount(@RequestBody ShopVipAccountDetailDto shopVipAccountDetailDto);
}