| | |
| | | } |
| | | |
| | | @Override |
| | | public List<AttachEntity> selectByGuids(List<String> guids) { |
| | | return attachMapper.selectByGuids(guids); |
| | | } |
| | | |
| | | @Override |
| | | public AttachEntity selectByTabAndGuid(String tab, String tabGuid, String guid) { |
| | | return attachMapper.selectByTabAndGuid(tab, tabGuid, guid); |
| | | } |
| | | |
| | | @Override |
| | | public List<AttachEntity> selectByTabGuids(String tab, List<String> guids) { |
| | | return attachMapper.selectByTabGuids(tab, guids); |
| | | } |
| | | |
| | | @Override |
| | | public List<AttachEntity> selectByTab(String tab, String guid) { |
| | | return attachMapper.selectByTab(tab, guid); |
| | | } |