Commit 75286027 by 程裕兵

feat:api

parent 124ff708
......@@ -6,6 +6,7 @@ import com.jiejing.fitness.finance.api.cashier.request.GetBrandCashierByIdReques
import com.jiejing.fitness.finance.api.cashier.request.ListBrandCashierByOrderNoRequest;
import com.jiejing.fitness.finance.api.cashier.request.PageBrandCashierRequest;
import com.jiejing.fitness.finance.api.cashier.vo.BrandCashierRecordVO;
import com.jiejing.fitness.finance.api.merchant.BrandMerchantApi;
import io.swagger.annotations.ApiOperation;
import java.util.List;
import org.springframework.cloud.openfeign.FeignClient;
......@@ -15,7 +16,7 @@ import org.springframework.web.bind.annotation.PostMapping;
* @author chengyubing
* @since 2024/2/29 10:41
*/
@FeignClient(name = "PAYCENTER", url = "http://app-paycenter:7007", fallbackFactory = BrandCashierApiFallback.class)
@FeignClient(name = "FINANCE", url = "${rpc.url.fit-finance:http://app-fit-finance:7007}", fallbackFactory = BrandCashierApiFallback.class)
public interface BrandCashierApi {
String TAG = "金融-品牌收银管理";
......
......@@ -28,7 +28,7 @@ import org.springframework.web.bind.annotation.PostMapping;
* @author chengyubing
* @since 2024/2/22 11:49
*/
@FeignClient(name = "PAYCENTER", url = "http://app-paycenter:7007", fallbackFactory = BrandMerchantApi.class)
@FeignClient(name = "FINANCE", url = "${rpc.url.fit-finance:http://app-fit-finance:7007}", fallbackFactory = BrandMerchantApi.class)
public interface BrandMerchantApi {
String TAG = "金融-品牌商户管理";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment