package com.landtool.lanbase.modules.sys.service; import java.util.List; import java.util.Map; import com.landtool.lanbase.modules.sys.entity.SysAttachment; /** * @author lanbase * @Description: TODO() * @date 2017-7-10 17:01 */ public interface SysAttachmentService { /** * 获取List列表 */ List queryList(Map map); /** * 获取总记录数 */ int queryTotal(Map map); SysAttachment queryObject(Long id); void deleteBatch(Long[] ids); void save(SysAttachment sysAttachment); void deleteByPath(String path); }