| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | |
| | | DashboardDto getDashbord(@Param("type") String type, @Param("taskType") String taskType); |
| | | |
| | | List<StockTransItemDto> getStockTrand(@Param(Constants.WRAPPER) LambdaQueryWrapper<StockStatistic> queryWrapper); |
| | | |
| | | /** 查询在指定时间之前被逻辑删除的订单 id(用于物理清理,补删历史) */ |
| | | List<Long> selectLogicDeletedOrderIdsBefore(@Param("before") Date before); |
| | | |
| | | /** 按 id 物理删除已逻辑删除的订单 */ |
| | | int physicalDeleteByIds(@Param("ids") List<Long> ids); |
| | | } |