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
40
41
42
43
44
45
46
47
48
package com.shlanbao.tzsc.pms.equ.wcplan.service;
 
import com.shlanbao.tzsc.base.mapping.EqmWheelCovelParam;
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.pms.equ.wcplan.beans.EqmWheelCovelParamBean;
 
/**
 * 
* @ClassName: EqmWheelCovelParamServiceI 
* @Description: 保养详情 
* @author luo
* @date 2015年3月13日 下午3:02:11 
*
 */
public interface EqmWheelCovelParamServiceI{
 
    /**
     * 
    * @Title: queryBeanList 
    * @Description: PMS界面中使用的查询  
    * @param  bean
    * @return DataGrid    返回类型 
    * @throws
     */
    public DataGrid queryBeanList(EqmWheelCovelParamBean bean);
    /**
     * 
    * @Title: updateBean 
    * @Description: 修改  
    * @param @param bean
    * @param @return    设定文件 
    * @return boolean    返回类型 
    * @throws
     */
    public boolean updateBean(EqmWheelCovelParamBean bean);
    /**
     * 
    * @Title: addWheelCovelParam 
    * @Description: 添加  
    * @param  bean 
    * @return boolean    返回类型 
    * @throws
     */
    public boolean addWheelCovelParam(EqmWheelCovelParam bean);
    
    
    public void buildWheelCovelPlan();
}