初始版本
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.vverp.controller.admin;
|
||||
|
||||
import com.vverp.service.OrderLogService;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
/**
|
||||
* @author dealsky
|
||||
* @date 2020/4/13 9:12 上午
|
||||
*/
|
||||
@Controller("adminOrderLogController")
|
||||
@RequestMapping("/admin/orderLog")
|
||||
public class OrderLogController extends BaseController {
|
||||
|
||||
@Resource
|
||||
private OrderLogService orderLogService;
|
||||
|
||||
@RequestMapping("/list")
|
||||
public String list(String sn, ModelMap modelMap) {
|
||||
modelMap.addAttribute("sn", sn);
|
||||
modelMap.addAttribute("list", orderLogService.findListBySn(sn));
|
||||
return "/common/dialog/orderLog";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user