GZMachinesWeb/.svn/pristine/fe/fe7f4d55d3f70ba7472ee2a814c...

25 lines
726 B
Plaintext

package com.bonus.repairCheck.controller;
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 com.bonus.repairCheck.beans.RepairCheckDetailsBean;
import com.bonus.repairCheck.service.RepairCheckDetailsService;
import com.bonus.sys.BaseController;
@Controller
@RequestMapping("/backstage/repairCheck/")
public class RepairCheckDetailsController extends BaseController<RepairCheckDetailsBean> {
@Autowired
private RepairCheckDetailsService service;
@RequestMapping("list")
public String index(Model model) {
return "/scrap/scrapAppointList";
}
}