提交 | 用户 | age
|
d0d880
|
1 |
package com.hz.his.feign.service.marketing; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.marketing.common.MarketingTotalDto; |
|
5 |
import org.springframework.cloud.openfeign.FeignClient; |
|
6 |
import org.springframework.web.bind.annotation.PostMapping; |
|
7 |
import org.springframework.web.bind.annotation.RequestBody; |
|
8 |
|
|
9 |
/** |
|
10 |
* 营销助手审核接口 |
|
11 |
*/ |
|
12 |
@FeignClient(name="marketing-assistant-user",path = "/m_assistant",contextId = "m-common") |
|
13 |
public interface MCommonService { |
|
14 |
|
|
15 |
/** |
|
16 |
* 统一申请审核接口 |
|
17 |
*/ |
|
18 |
@PostMapping(value = "/common/apply") |
|
19 |
Result applyOrderDiscount(@RequestBody MarketingTotalDto marketingTotalDto); |
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
} |