#
zjj
2024-11-02 c9a3592c20b7913dd9949383721ae26c32563eb7
src/main/java/com/zy/asrs/mapper/WrkMastMapper.java
@@ -5,13 +5,17 @@
import org.apache.ibatis.annotations.*;
import org.springframework.stereotype.Repository;
import java.io.Serializable;
import java.util.List;
@Mapper
@Repository
public interface WrkMastMapper extends BaseMapper<WrkMast> {
    WrkMast selectByLocNo(@Param("sourceLocNo") String staNo);
    WrkMast selectCrn5Task2();
    WrkMast selectByLocNo( @Param("staNo") String staNo);
    WrkMast selectByLocNo1(@Param("sourceLocNo") String sourceLocNo);
@@ -118,4 +122,11 @@
     * 查询是否是盘点出库,检料出库
     */
    WrkMast selectpj(@Param("staNo")Integer staNo,@Param("barcode")String barcode);
    List<WrkMast> selectLaneWrkMastIn();//查询入库任务
    List<WrkMast> selectLaneWrkMastOut();//查询出库任务
    WrkMast selectByWrkNo(Integer wrkNo);
}