| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.domain.TOrderMeal; |
| | | import com.ruoyi.system.query.TDataGeneratorMealQuery; |
| | | import com.ruoyi.system.query.TDataStatisticsQuery; |
| | | import com.ruoyi.system.query.TOrderMealQuery; |
| | | import com.ruoyi.system.query.*; |
| | | import com.ruoyi.system.vo.*; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | List<TOrderMealVO> mealGeneratorExport(@Param("query")TDataGeneratorMealQuery query); |
| | | |
| | | /** |
| | | * 导出数据生成列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | List<TDataGeneratorVO> mealGeneratorListExport(@Param("query")TDataGeneratorQuery query); |
| | | |
| | | /** |
| | | * 盈利明细分页 |
| | | * @param query |
| | | * @param pageInfo |
| | | * @return |
| | | */ |
| | | List<GoodsProfitVO> profitDetails(@Param("query") ProfitDetailsQuery query, @Param("pageInfo")PageInfo<GoodsProfitVO> pageInfo); |
| | | |
| | | /** |
| | | * 统计商品金额 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Map<String, BigDecimal> profitDetailsStatistics(@Param("query")ProfitDetailsQuery query); |
| | | |
| | | /** |
| | | * 导出盈利明细 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | List<GoodsProfitVO> profitDetailsExport(@Param("query")ProfitDetailsQuery query); |
| | | } |