資源簡介
物流管理系統畢業設計,實習,含全套源代碼,原型設計,數據庫設計,文檔等。畢業時期一個團隊的作品,花費了很多功夫,希望大家支持。
代碼片段和文件信息
package?com.wbg.logistics.controller;
import?com.wbg.logistics.dao.AdminMapper;
import?com.wbg.logistics.entity.Admin;
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?org.springframework.web.bind.annotation.RequestMethod;
import?org.springframework.web.bind.annotation.RequestParam;
import?java.util.List;
@Controller
@RequestMapping(“/admin“)
public?class?AdminMapperController?{
????@Autowired
????private?AdminMapper?adminMapper;
????@RequestMapping(method?=?RequestMethod.GET)
????public?String?index(@RequestParam(defaultValue?=?“1“)?int?page?Model?model){
????????List?authodList=adminMapper.selectAll();
????????model.addAttribute(“authod“authodList);
????????return?“/employee“;
????}
}
- 上一篇:NI-GPIB-usb 光盤
- 下一篇:ChineseNER-data.tar.xz
評論
共有 條評論