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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.shlanbao.tzsc.pms.equ.lubricate.service;
 
import java.util.List;
 
import com.shlanbao.tzsc.base.mapping.EqmLubricantPlan;
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.equ.lubricate.beans.EqmBubricantfBean;
import com.shlanbao.tzsc.pms.equ.lubricate.beans.EqmLubricantPlanBean;
 
/**
* @ClassName: EqmLubricantPlanServiceI 
* @Description: 设备润滑计划 
* @author luo
* @date 2015年7月14日 上午11:36:30 
*
 */
public interface EqmLubricantPlanServiceI {
    /**
     * 
    * @Title: saveBean 
    * @Description: 新增  
    * @param  bean
    * @return boolean    返回类型 
    * @throws
     */
    public EqmLubricantPlan saveBean(EqmLubricantPlan bean);
    /**
     * 
    * @Title: updateBean 
    * @Description: 修改  
    * @param  bean
    * @return boolean    返回类型 
    * @throws
     */
    public boolean updateBean(EqmLubricantPlanBean bean) throws Exception;
 
    /**
     * 
    * @Title: queryDataGrid 
    * @Description: 查询  
    * @param  bean
    * @param  pageParams
    * @throws Exception    设定文件 
    * @return DataGrid    返回类型 
    * @throws
     */
    public DataGrid queryDataGrid(EqmLubricantPlanBean bean,PageParams pageParams) throws Exception;
    /**
     * 
    * @Title: getBeanById 
    * @Description: 根据ID获取对象  
    * @param  id
    * @return EqmLubricantPlan    返回类型 
    * @throws
     */
    public EqmLubricantPlan getBeanById(String id);
    
    /**
     * 
    * @Title: getBeanById 
    * @Description: 根据ID获取对象  
    * @param  id
    * @return EqmLubricantPlan    返回类型 
    * @throws
     */
    public EqmLubricantPlanBean getBeanByIds(String id) throws Exception;
    
    /**
     * 功能说明:设备润滑计划管理-添加
     * @author wanchanghuang
     * @time 2015年8月21日16:35:42
     * 
     * */
    public List<?> addEqmLubricatPlan(EqmBubricantfBean bean);
    public void deleteCycle(String ids) throws Exception;
    
}