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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.shlanbao.tzsc.pms.equ.wcplan.service;
 
import java.util.List;
 
import com.shlanbao.tzsc.base.mapping.EqmWheelCovelPlanInfo;
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.equ.wcplan.beans.BatchWCPlan;
import com.shlanbao.tzsc.pms.equ.wcplan.beans.EqmWheelCalendar;
import com.shlanbao.tzsc.pms.equ.wcplan.beans.EqmWheelCovelPlanBean;
/**
 *
* @ClassName: EqmWheelCovelPlanServiceI
* @Description: 设备轮保管理
* @author luo
* @date 2015年3月12日 下午5:08:03
*
 */
public interface EqmWheelCovelPlanServiceI {
 
    /**
     * 设备轮保计划查询
     * @param wcpBean
     * @param pageParams
     * @return DataGrid
     * @throws Exception
     */
    public DataGrid queryWCPlan(EqmWheelCovelPlanInfo wcpBean,PageParams pageParams) throws Exception;
    /**
     *
    * @Title: updateWCPlanStatus
    * @Description: 根据ID修改状态
    * @param  id
    * @param  status    设定文件
    * @throws
     */
    public void updateWCPlanStatus(String id,String status);
 
    /**
     * 设备轮保计划新增
     * @param eqmResumeBean
     * @param userId
     * @throws Exception
     */
    public void addWCPlan(EqmWheelCovelPlanBean wcpBean,String userId) throws Exception;
    /**
     * 设备轮保计划编辑
     * @param wcpBean
     * @throws Exception
     */
    public void editWCPlan(EqmWheelCovelPlanBean wcpBean) throws Exception;
 
    /**
     * 获取当前行数据
     * @param id
     * @return
     * @throws Exception
     */
    public EqmWheelCovelPlanBean getById(String id) throws Exception;
 
    /**
     * 删除轮保计划
     * @param id
     * @return
     * @throws Exception
     */
    public void deleteWCPlan(String id) throws Exception;
 
    /**
    * @Title: queryWCPlanCalendar
    * @Description: 根据日期获取DataGrid
    * @param @param date1
    * @param @param date2
    * @param @return
    * @param @throws Exception    设定文件
    * @return DataGrid    返回类型
    * @throws
     */
    public List<EqmWheelCalendar> queryWCPlanCalendar(String date1,String date2) throws Exception ;
 
    public int dasSendEquipmentWorkOrderResult(String type, String ids);
    /** 批量删除 */
    public void deleteEqmWheelCovelById(String type, String ids);
    /** 保存对象并返回插入的ID*/
    public String saveByEqmWheelCovelPlanByObj(EqmWheelCovelPlanInfo ecp);
    /** 插入子表 */
    public void saveByEqmWheelCovelParamByObj(EqmWheelCovelPlanInfo ecp);
 
    public void orderResult(String ids,Integer type);
    public void orderResultFSJ(String ids, Integer type);
    public void orderResultToCounter(String ids, Integer type);
    public void orderCounterFSJ(String ids, Integer type);
 
 
    void revokeCounter(String ids, Integer type);
}