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
29
30
31
32
33
34
35
36
package com.shlanbao.tzsc.pms.equ.resume.service;
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.equ.resume.beans.EqmScrapcelBean;
 
public interface EqmScrapcelServiceI {
    /**
     * 删除
     * @param id
     * @throws Exception
     */
    public void deleteById(String id) throws Exception;
    /**
     * 根据主键ID查询信息
     * @param id
     * @return
     * @throws Exception
     */
    public EqmScrapcelBean getById(String id) throws Exception;
    /**
     * 添加 或 修改
     * @param bean
     * @param userId
     * @throws Exception
     */
    public void addOrEditBean(String eqmResumeId ,EqmScrapcelBean[] bean,String userId) throws Exception;
    /**
     * 分页查询
     * @param bean
     * @param pageParams
     * @return
     * @throws Exception
     */
    public DataGrid queryList(EqmScrapcelBean bean,PageParams pageParams) throws Exception;
}