package com.jkcredit.sysnews.service.newsArticlePhoto; import com.jkcredit.sysnews.model.dto.newsArticlePhoto.NewsArticlePhotoDto; import com.jkcredit.sysnews.model.po.newsArticlePhoto.NewsArticlePhotoPo; import java.util.List; /** * @description: * @author: xusonglin * @create: 2020/3/27 16:19 * @version: V1.0 **/ public interface NewsArticlePhotoService { void saveNewsArticlePhoto(NewsArticlePhotoDto dto); void deleteNewsArticlePhoto(Long id); List getArticlePhotoByNewsId(Long id); }