package com.hz.his.feign.service.phis;

import com.hx.resultTool.Result;
import com.hz.his.dto.PageDto;
import com.hz.his.dto.user.UserDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;

import java.math.BigDecimal;

/**
 * @ClassName SActivityController
 * @Description 活动规则
 * @Author Wrh
 * @Date 2022/8/8 17:36
 * @Version 1.0
 */
@FeignClient(name="phis-provider",path = "/p-his-data",contextId = "questionnaire")
public interface SQuestionnaireService {

    /**
     * 获取调查问卷推送记录详情
     * @param dto 用户标识
     * @return Result
     */
    @PostMapping(value = "/get/sending-records/detail")
    Result getSendingRecordsDetail(@RequestBody(required = false) UserDto dto);



}