- 在IWmsDeliveryPlanService接口中新增getDeliveryReport方法 - 在WmsDeliveryPlanController中添加/report接口用于获取发货报表 - 在WmsDeliveryPlanMapper中新增selectDeliveryReport方法 - 在WmsDeliveryPlanMapper.xml中编写发货报表查询SQL - 在WmsDeliveryPlanServiceImpl中实现发货报表统计逻辑 - 新增WmsDeliveryReportVo类用于封装发货报表数据
24 lines
670 B
Java
24 lines
670 B
Java
package com.klp.mapper;
|
|
|
|
import com.klp.domain.WmsDeliveryPlan;
|
|
import com.klp.domain.vo.WmsDeliveryPlanStatisticsVo;
|
|
import com.klp.domain.vo.WmsDeliveryPlanVo;
|
|
import com.klp.common.core.mapper.BaseMapperPlus;
|
|
import com.klp.domain.vo.WmsDeliveryReportVo;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 发货计划Mapper接口
|
|
*
|
|
* @author klp
|
|
* @date 2025-11-25
|
|
*/
|
|
public interface WmsDeliveryPlanMapper extends BaseMapperPlus<WmsDeliveryPlanMapper, WmsDeliveryPlan, WmsDeliveryPlanVo> {
|
|
|
|
List<WmsDeliveryPlanStatisticsVo> selectDeliveryPlanStatistics(Long planId);
|
|
|
|
List<WmsDeliveryReportVo> selectDeliveryReport(Date startTime, Date endTime);
|
|
}
|