java110
2022-06-01 e52ddfe8caf7d0027950033a5aff2a1fd3482e9d
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);
}