| 对比新文件 |
| | |
| | | package com.ruoyi.production.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.production.bean.dto.ProductionOrderPickRecordDto; |
| | | import com.ruoyi.production.bean.vo.ProductionOrderPickRecordVo; |
| | | import com.ruoyi.production.bean.vo.ProductionOrderPickVo; |
| | | import com.ruoyi.production.pojo.ProductionOrderPickRecord; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 绾胯竟浠撳嚭鍏ュ簱璁板綍 Mapper 鎺ュ彛 |
| | | * </p> |
| | | * |
| | | * @author 鑺杞欢锛堟睙鑻忥級鏈夐檺鍏徃 |
| | | * @since 2026-04-21 03:55:52 |
| | | */ |
| | | @Mapper |
| | | public interface ProductionOrderPickRecordMapper extends BaseMapper<ProductionOrderPickRecord> { |
| | | |
| | | List<ProductionOrderPickVo> listPickedDetailByOrderId(@Param("productionOrderId") Long productionOrderId); |
| | | |
| | | List<ProductionOrderPickRecordVo> listFeedingRecord(ProductionOrderPickRecordDto dto); |
| | | } |