NewsArticlePhotoService.java 533 B

1234567891011121314151617181920
  1. package com.jkcredit.sysnews.service.newsArticlePhoto;
  2. import com.jkcredit.sysnews.model.dto.newsArticlePhoto.NewsArticlePhotoDto;
  3. import com.jkcredit.sysnews.model.po.newsArticlePhoto.NewsArticlePhotoPo;
  4. import java.util.List;
  5. /**
  6. * @description:
  7. * @author: xusonglin
  8. * @create: 2020/3/27 16:19
  9. * @version: V1.0
  10. **/
  11. public interface NewsArticlePhotoService {
  12. void saveNewsArticlePhoto(NewsArticlePhotoDto dto);
  13. void deleteNewsArticlePhoto(Long id);
  14. List<NewsArticlePhotoPo> getArticlePhotoByNewsId(Long id);
  15. }