| | |
| | | import com.kidgrow.common.service.ISuperService; |
| | | import com.kidgrow.oprationcenter.model.ProductOrderDetail; |
| | | import com.kidgrow.oprationcenter.vo.*; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | UserProductDetail getUserProductDetail(Long hospitalId, Long departmentId); |
| | | |
| | | ResultBody biUserNowProduct(Long hospitalId,Long departmentId); |
| | | ResultBody<UserProductData> UserProductDetailData(Long hospitalId, Long departmentId); |
| | | ResultBody<UserProductData> UserProductDetailData(Long hospitalId, Long departmentId,String diagnosticId); |
| | | |
| | | /** |
| | | * 试用审核的列表 |
| | |
| | | * endTime 结束时间 |
| | | * @return |
| | | */ |
| | | List<OrderChartVo> productOrderChart(@Param("p") Map<String, Object> params); |
| | | List<OrderChartVo> productOrderChart(Map<String, Object> params); |
| | | /** |
| | | * 统计产品的使用数量 |
| | | * @return ccount 是数量 |
| | | * units 是产品名称 |
| | | */ |
| | | List<OrderChartVo> proCountChart(); |
| | | /** |
| | | *获取该科室下的所有的套餐信息 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | PageResult<ProductOrderDetail> departmentProductDetail(Map<String, Object> params); |
| | | } |
| | | |