编写mvc基础代码添加ResponseMessage编写Message关键字

This commit is contained in:
qingfeng1121
2025-10-09 12:12:42 +08:00
parent 1d4dee573e
commit 6841ba67f1
13 changed files with 282 additions and 157 deletions

View File

@@ -0,0 +1,11 @@
package com.qf.myafterprojecy.service;
import com.qf.myafterprojecy.pojo.Article;
import com.qf.myafterprojecy.pojo.ResponseMessage;
public interface IArticleService {
ResponseMessage<Article> getArticleByid(Integer articleid);
ResponseMessage<Iterable<Article>> getArticleAll();
}