zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
package com.shlanbao.tzsc.pms.equ.sbglplan.service;
 
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.equ.sbglplan.beans.EqmSpotchRecodeBean;
/**
 * 
* @ClassName: EqmPlanServiceI 
* @Description: 设备轮保管理 
*
 */
public interface EqmCheckcatPlanServiceI {
    /**
     * 根据工单查询点修记录
     * @param eSRBean
     * @param pageParams
     * @return
     */
    public DataGrid queryPlanInfo(EqmSpotchRecodeBean eSRBean,
            PageParams pageParams);
    /**
     * 根据id 查询到具体的一条点修记录
     * @param esrBean
     * @return
     */
    public DataGrid queryInfoById(String id);
}