package com.kwan.springbootkwan.service; import com.kwan.springbootkwan.entity.resp.BusinessInfoResponse; import java.util.List; /** * 获取最新的文章 * * @author : qinyingjie * @version : 2.2.0 * @date : 2023/10/25 18:44 */ public interface CsdnArticleService { /** * 获取最新的5篇文章 * * @param username * @return */ List getArticles(String username); }