自动化立体仓库 - WMS系统
#
LSH
2023-12-27 e8cc8905586d191c7b9f5165d07b80d046dcc40e
src/main/java/com/zy/asrs/mapper/NodeMapper.java
@@ -1,13 +1,21 @@
package com.zy.asrs.mapper;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.ManLocDetl;
import com.zy.asrs.entity.Node;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Map;
@Mapper
@Repository
public interface NodeMapper extends BaseMapper<Node> {
    Node selectByUuid(@Param("uuid") String uuid, @Param("hostId") Long hostId);
    List<Node> listByPage(Map<String, Object> map);
    Integer listByPageCount(Map<String, Object> map);
}