cmg
2024-04-30 3dac1b9697a7a214789cc2d95788a178a63be4aa
提交 | 用户 | 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 /**
6b644f 14  * @ClassName SQuestionnaireService
W 15  * @Description 调查问卷推送记录
d4dfb7 16  * @Author Wrh
W 17  * @Date 2022/8/8 17:36
18  * @Version 1.0
19  */
314a4b 20 @FeignClient(name="phi-platform-user",path = "/p-his-data",contextId = "questionnaire")
d4dfb7 21 public interface SQuestionnaireService {
W 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
6b644f 32     /**
W 33      * 获取调查问卷推送记录列表
34      * @param dto 用户标识
35      * @return Result
36      */
37     @PostMapping(value = "/sending/records/list")
38     Result getSendingRecordsList(@RequestBody(required = false) UserDto dto);
39
40
b9fe96 41     /**
W 42      * 获取调查问卷推送记录详情
43      * @param dto 用户标识
44      * @return Result
45      */
46     @PostMapping(value = "/sending/records/see")
47     Result see(@RequestBody(required = false) UserDto dto);
d4dfb7 48
W 49 }