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