KPIController.java
681 字节
package com.tianbo.controller;
import com.tianbo.model.TKpiCargoWaybill;
import com.tianbo.service.KPICargoBillServcie;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
/**
* 运单表
*/
@Controller
@RequestMapping("/kpi")
public class KPIController {
@Autowired
KPICargoBillServcie kpiService;
@RequestMapping("list")
public ModelAndView list(){
TKpiCargoWaybill waybill = new TKpiCargoWaybill();
return new ModelAndView("kpi/list","waybill",waybill);
}
}