fwq
2023-11-14 9a9e8d995ea4c95e0303b456cf6fcd4188f97366
提交 | 用户 | 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")
2716d3 19     Result commonApply(@RequestBody MarketingTotalDto marketingTotalDto);
d0d880 20
F 21
22
23
24 }