package com.flf.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import com.flf.entity.Info;
import com.flf.entity.Page;
import com.flf.service.InfoService;
@Controller
@RequestMapping(value="/info")
public class InfoController {
@Autowired
private InfoService infoService;
@RequestMapping
public String info(Model model,Page page){
List<Info> infoList = infoService.listPageInfo(page);
model.addAttribute("infoList", infoList);
model.addAttribute("page", page);
return "info";
}
}
最近下载更多
hyxhyxhyx LV1
2024年10月24日
黑 LV7
2024年3月25日
1379585889 LV11
2023年6月7日
孟子大叔 LV7
2023年3月27日
hihhhh LV6
2022年12月18日
ming_123_9715 LV23
2022年7月19日
wanglinddad LV55
2022年4月7日
鹿先森 LV3
2022年2月17日
mynewcode LV5
2022年2月9日
Liang LV3
2021年6月23日

最近浏览