rx
2023-09-21 68426f6bb5976e4852dfdb82f55fcb0e4fd9703a
提交 | 用户 | age
d4dfb7 1 package com.hz.his.feign.service.phis;
W 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.PageDto;
5 import com.hz.his.dto.user.UserDto;
6 import org.springframework.cloud.openfeign.FeignClient;
7 import org.springframework.web.bind.annotation.PostMapping;
8 import org.springframework.web.bind.annotation.RequestBody;
9 import org.springframework.web.bind.annotation.RequestParam;
10
11 import java.math.BigDecimal;
12
13 /**
14  * @ClassName SActivityController
15  * @Description 活动规则
16  * @Author Wrh
17  * @Date 2022/8/8 17:36
18  * @Version 1.0
19  */
20 @FeignClient(name="phis-provider",path = "/p-his-data",contextId = "questionnaire")
21 public interface SQuestionnaireService {
22
23     /**
24      * 获取调查问卷推送记录详情
25      * @param dto 用户标识
26      * @return Result
27      */
28     @PostMapping(value = "/get/sending-records/detail")
29     Result getSendingRecordsDetail(@RequestBody(required = false) UserDto dto);
30
31
32
33 }