1234567891011121314151617181920 |
- 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<NewsArticlePhotoPo> getArticlePhotoByNewsId(Long id);
- }
|