| | |
| | | package com.zy.asrs.service.impl; |
| | | |
| | | import com.zy.asrs.entity.LocOwner; |
| | | import com.zy.asrs.entity.ManLocDetl; |
| | | import com.zy.asrs.mapper.LocCheckMapper; |
| | | import com.zy.asrs.entity.LocCheck; |
| | |
| | | public boolean deleteAll() { |
| | | return this.baseMapper.deleteAll(); |
| | | } |
| | | @Override |
| | | public List<ManLocDetl> getLocCountLocDetl(int count, String locno) { |
| | | return this.baseMapper.getLocCountLocDetl(count,locno); |
| | | } |
| | | |
| | | @Override |
| | | public List<ManLocDetl> getOwnerCountLocDetl(int count, String owner) { |
| | | return this.baseMapper.getOwnerCountLocDetl(count,owner); |
| | | } |
| | | |
| | | @Override |
| | | public List getLocCount() { |
| | | return this.baseMapper.getLocCount(); |
| | | } |
| | | |
| | | @Override |
| | | public List<LocOwner> getOwnerCount() { |
| | | return this.baseMapper.getOwnerCount(); |
| | | } |
| | | } |