| | |
| | | package com.kidgrow.oprationcenter.mapper; |
| | | |
| | | import com.kidgrow.oprationcenter.model.ProductOrderDetail; |
| | | import com.kidgrow.db.mapper.SuperMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.kidgrow.db.mapper.SuperMapper; |
| | | import com.kidgrow.oprationcenter.model.ProductOrderDetail; |
| | | import com.kidgrow.oprationcenter.vo.GroupProductDetail; |
| | | import com.kidgrow.oprationcenter.vo.ProductOrderJoinDetail; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return |
| | | */ |
| | | List<ProductOrderDetail> findList(Page<ProductOrderDetail> page, @Param("p") Map<String, Object> params); |
| | | |
| | | /** |
| | | * 查询产品/明显的充值记录列表 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | List<ProductOrderJoinDetail> findAllList(@Param("p") Map<String, Object> params); |
| | | /** |
| | | * 根据ProductOrderDetail对象当做查询条件进行查询 |
| | | * @param |
| | | * @return ProductOrderDetail对象 |
| | | */ |
| | | ProductOrderDetail findByObject(@Param("p") ProductOrderDetail productOrderDetail); |
| | | ProductOrderDetail findByObject(@Param("p") ProductOrderDetail productOrderDetail);/** |
| | | * 统计产品使用量 |
| | | * @param |
| | | * @return ProductOrderDetail对象 |
| | | */ |
| | | List<GroupProductDetail> groupProductDetail(Page<GroupProductDetail> page, @Param("p") Map<String, Object> params); |
| | | |
| | | List<ProductOrderJoinDetail> getTypeByUser(Long id); |
| | | } |