• 大小: 17.79MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-07-06
  • 语言: 其他
  • 标签: 物流  配送  java  

资源简介

物流管理系统毕业设计,实习,含全套源代码,原型设计,数据库设计,文档等。毕业时期一个团队的作品,花费了很多功夫,希望大家支持。

资源截图

代码片段和文件信息

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“;
    }
}

评论

共有 条评论