zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.shlanbao.tzsc.pms.equ.wcplan.controller;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.pms.equ.wcplan.beans.EqmWheelCovelParamBean;
import com.shlanbao.tzsc.pms.equ.wcplan.service.EqmWheelCovelParamServiceI;
 
/**
 * 
* @ClassName: EqmWheelCovelParamBeanController 
* @Description: 保养详情 
* @author luo
* @date 2015年3月13日 下午4:47:33 
*
 */
@Controller
@RequestMapping("/pms/wcpparam")
public class EqmWheelCovelParamBeanController {
 
    @Autowired
    public EqmWheelCovelParamServiceI eqmWheelCovelParamServiceI;
    
    @ResponseBody
    @RequestMapping("/queryParam")
    public DataGrid queryWcpParam(EqmWheelCovelParamBean bean){
        
        return eqmWheelCovelParamServiceI.queryBeanList(bean);
    }
    
    @ResponseBody
    @RequestMapping("/ceshi")
    public void ceshi(){
        eqmWheelCovelParamServiceI.buildWheelCovelPlan();
    }
}