| | |
| | | import com.kidgrow.oprationcenter.vo.ConsumptionRequest; |
| | | import com.kidgrow.ribbon.config.FeignHttpInterceptorConfig; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | |
| | | */ |
| | | @PostMapping(value = "consumption/Artificial") |
| | | ResultBody consumptionArtificial (@RequestBody ConsumptionRequest consumptionRequest); |
| | | /** |
| | | * 获取医院套餐是否到期和到期时间 |
| | | * data内 isend为true说明套餐到期 |
| | | * endtime上套餐的到期时间 |
| | | * @param hospitalId |
| | | * @param departmentId |
| | | */ |
| | | @GetMapping(value = "productorderdetail/UserProductDetailData") |
| | | ResultBody UserProductDetailData (@RequestParam Long hospitalId, Long departmentId); |
| | | } |