| | |
| | | |
| | | @Override |
| | | public Integer selectCount(String name) { |
| | | name = StringHelper.getLikeStr(name); |
| | | name = StringHelper.getLikeUpperStr(name); |
| | | |
| | | return attachMapper.selectCount(name); |
| | | } |
| | | |
| | | @Override |
| | | public List<AttachEntity> selectByPage(String name, Integer limit, Integer offset) { |
| | | name = StringHelper.getLikeStr(name); |
| | | name = StringHelper.getLikeUpperStr(name); |
| | | |
| | | return attachMapper.selectByPage(name, limit, offset); |
| | | } |
| | |
| | | } |
| | | |
| | | @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); |
| | | } |