Easyui and mvc 项目05——新书上架及门户首页

一、 新书上架
dao和Action
dao  根据时间降序:
//新书上架
public List news(Book book,PageBean pageBean) throws Exception {
String sql="select * from t_easyui_book where state=2 order by deployTime desc limit 8";
return super.executeQuery(sql, Book.class, pageBean);
}

Action:
public void news(HttpServletRequest req, HttpServletResponse resp) {
try {
List list = bookDao.news(book, null);
ResponseUtil.writeJson(resp, list);

Easyui and mvc 项目05——新书上架及门户首页最先出现在Python成神之路

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/5014.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>