| | |
| | | |
| | | @ApiOperation(value = "获取医院套餐是否到期和到期时间") |
| | | @GetMapping("/UserProductDetailData") |
| | | public ResultBody UserProductDetailData(@RequestParam Long hospitalId, @RequestParam Long departmentId) { |
| | | return productOrderDetailService.UserProductDetailData(hospitalId, departmentId); |
| | | public ResultBody UserProductDetailData(@RequestParam Long hospitalId, @RequestParam Long departmentId,@RequestParam String diagnosticId) { |
| | | return productOrderDetailService.UserProductDetailData(hospitalId, departmentId,diagnosticId); |
| | | } |
| | | |
| | | /** |
| | |
| | | @ApiOperation(value = "获取医院套餐是否到期和到期时间") |
| | | @PostMapping("/serviceperiod") |
| | | public ResultBody<UserProductData> ServicePeriod(@RequestBody HospitalInfo hospitalInfo) { |
| | | return productOrderDetailService.UserProductDetailData(hospitalInfo.getHospitalId(), hospitalInfo.getDepartmentId()); |
| | | return productOrderDetailService.UserProductDetailData(hospitalInfo.getHospitalId(), hospitalInfo.getDepartmentId(),hospitalInfo.getDiagnosticId()); |
| | | } |
| | | |
| | | /** |