| | |
| | | import com.hz.his.dto.aduit.AduitDto; |
| | | import com.hz.his.dto.order.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestHeader; |
| | | |
| | | /** |
| | | * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
| | |
| | | * data 实体转化用 OrderDto |
| | | */ |
| | | @PostMapping(value = "/order/refund/details") |
| | | Result refundDetails(OrderDto orderDto); |
| | | Result refundDetails(OrderRefundDto orderRefundDto); |
| | | |
| | | /** |
| | | * 选完数量点击下一步显示数据接口 |