| | |
| | | package com.zy.asrs.wms.asrs.mapper; |
| | | |
| | | import com.zy.asrs.wms.asrs.entity.LocDetl; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.executor.Executor; |
| | | import org.apache.ibatis.mapping.MappedStatement; |
| | | import org.apache.ibatis.plugin.Intercepts; |
| | | import org.apache.ibatis.plugin.Signature; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface LocDetlMapper extends BaseMapper<LocDetl> { |
| | | |
| | | List<LocDetl> getList(String matnr, String batch, List<Long> ids); |
| | | |
| | | |
| | | List<LocDetl> getStock(String matnr, String batch, List<Long> ids); |
| | | } |
| | | package com.zy.asrs.wms.asrs.mapper;
|
| | |
|
| | | import com.zy.asrs.wms.asrs.entity.LocDetl;
|
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| | | import org.apache.ibatis.annotations.Mapper;
|
| | | import org.apache.ibatis.executor.Executor;
|
| | | import org.apache.ibatis.mapping.MappedStatement;
|
| | | import org.apache.ibatis.plugin.Intercepts;
|
| | | import org.apache.ibatis.plugin.Signature;
|
| | | import org.springframework.stereotype.Repository;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | @Mapper
|
| | | @Repository
|
| | | public interface LocDetlMapper extends BaseMapper<LocDetl> {
|
| | |
|
| | | List<LocDetl> getList(String matnr, String batch, List<Long> ids);
|
| | |
|
| | |
|
| | | List<LocDetl> getStock(String matnr, String batch, List<Long> ids);
|
| | | }
|