| | |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.asrs.entity.result.LocDetlAll; |
| | | import com.zy.asrs.entity.result.LocDetlDTO; |
| | | import com.zy.asrs.entity.result.StockVo; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | @Repository |
| | | public interface LocDetlMapper extends BaseMapper<LocDetl> { |
| | | |
| | | List<LocDetlAll> selectAllOwner(LocDetlDTO locDetlDTO); |
| | | |
| | | int selectAllCount(LocDetlDTO locDetlDTO); |
| | | |
| | | List<LocDetl> listByPage(Map<String, Object> map); |
| | | |
| | | Integer listByPageCount(Map<String, Object> map); |