package kr.wisestone.owl.mapper; import kr.wisestone.owl.web.condition.AttachedFileCondition; import org.springframework.stereotype.Repository; import java.util.List; import java.util.Map; /** * Created by wisestone on 2018-02-27. */ @Repository public interface AttachedFileMapper { Long findUseStorage(AttachedFileCondition attachedFileCondition); List> findByWorkspaceId(Long workspaceId); List> findByIssueIds(AttachedFileCondition attachedFileCondition); void deleteAttachedFileByWorkspaceId(Long workspaceId); void deleteAttachedFileByIssueIds(AttachedFileCondition attachedFileCondition); void deleteAttachedFileNotId(); }