资源简介
物流管理系统毕业设计,实习,含全套源代码,原型设计,数据库设计,文档等。毕业时期一个团队的作品,花费了很多功夫,希望大家支持。
代码片段和文件信息
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
相关资源
- apache-tomcat-8.5.46-windows-x64.zip
- 基于SSM框架开发的因酷开源网络课堂
- vip会员管理系统、 基于spirng mvc、 s
- 基于 spring,spring mvc,mybatis 权限管理
- Spring mvc + Spring + Spring jdbc 整合
- 基于 Struts2,Hibernate,Spring 框架开发
- 基于spring mvc、spring、hibernate、bootst
- ssm框架整合spring、spring mvc、mybatis开发
- 通用开发平台spring mvc + spring + bootst
- 教师评价系统1.zip
- 完整的电力系统项目
- 算法(第四版)_算法红宝书_图灵图书
- 基于SSM框架的论坛系统
- 开发 做笔记常用编辑器Notepad++
- 物流管理系统源码
- 安卓快递物流查询
- SSH_OA.rar
- 客户关系管理系统(源码)附带数据
- 最新手机号段归属地数据库(2019年
- 基于SSH框架消息管理系统
- 高仿京淘项目
- 使用Servlet写的增删改查项目
- 药品管理系统
- 银行账户管理系统--本人毕设
- 《算法基础与在线实践》教材超清晰
- ssm框架的超市订单管理系统
- MES制造执行系统158763
- Web网上购物系统
- 医院管理系统ssh框架实现
- NC中开发webservice所需工具包
评论
共有 条评论