物流配送管理系统源码


物流管理系统毕业设计,实习,含全套源代码,原型设计,数据库设计,文档等。毕业时期一个团队的作品,花费了很多功夫,希望大家支持。
资源截图
代码片段和文件信息
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“;
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)