| | |
| | | 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.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestHeader; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | | /** |
| | | * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
| | |
| | | Result orderPayMoney(@RequestBody PayDto dto); |
| | | |
| | | |
| | | /** |
| | | * 开放平台-部分退款 |
| | | * data 实体转化用 CancelOrderReturnDto |
| | | */ |
| | | @PostMapping(value = "/order/partial/refund") |
| | | Result partialRefund(@RequestBody OrderRefundDto orderRefundDto); |
| | | |
| | | } |