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<Map<String, Object>> findByWorkspaceId(Long workspaceId);
|
|
List<Map<String, Object>> findByIssueIds(AttachedFileCondition attachedFileCondition);
|
|
void deleteAttachedFileByWorkspaceId(Long workspaceId);
|
|
void deleteAttachedFileByIssueIds(AttachedFileCondition attachedFileCondition);
|
|
void deleteAttachedFileNotId();
|
}
|