feat(wms): 优化配送报告查询接口

- 添加 MyBatis 参数注解以明确参数名称
- 提高代码可读性和维护性
This commit is contained in:
2025-11-27 10:34:02 +08:00
parent 08a548a81e
commit e7d050326f

View File

@@ -5,6 +5,7 @@ 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 org.apache.ibatis.annotations.Param;
import java.util.Date;
import java.util.List;
@@ -19,5 +20,5 @@ public interface WmsDeliveryPlanMapper extends BaseMapperPlus<WmsDeliveryPlanMap
List<WmsDeliveryPlanStatisticsVo> selectDeliveryPlanStatistics(Long planId);
List<WmsDeliveryReportVo> selectDeliveryReport(Date startTime, Date endTime);
List<WmsDeliveryReportVo> selectDeliveryReport(@Param("startTime")Date startTime, @Param("endTime")Date endTime);
}