| | |
| | | } |
| | | |
| | | @Override |
| | | public List<MetaEntity> selectByIds(String ids) { |
| | | return metaMapper.selectByIds(ids); |
| | | } |
| | | |
| | | @Override |
| | | public MetaEntity selectByGuid(String guid, String dircode, String tab) { |
| | | return metaMapper.selectByGuid(guid, dircode, tab); |
| | | } |
| | |
| | | return metaMapper.selectByIdsForTab(ids); |
| | | } |
| | | |
| | | @Override |
| | | public List<MetaEntity> selectMetaFiles(List<Integer> ids) { |
| | | return metaMapper.selectMetaFiles(StringHelper.join(ids, StaticData.COMMA)); |
| | | } |
| | | |
| | | @Override |
| | | public List<MetaEntity> selectMetaFiles(String ids) { |
| | | return metaMapper.selectMetaFiles(ids); |
| | | } |
| | | |