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.EqmChangeBean;
|
|
public interface EqmChangeServiceI {
|
/**
|
* 删除
|
* @param id
|
* @throws Exception
|
*/
|
public void deleteById(String id) throws Exception;
|
/**
|
* 根据主键ID查询信息
|
* @param id
|
* @return
|
* @throws Exception
|
*/
|
public EqmChangeBean getById(String id) throws Exception;
|
/**
|
* 添加 或 修改
|
* @param bean
|
* @param userId
|
* @throws Exception
|
*/
|
public void addOrEditBean(String eqmResumeId ,EqmChangeBean[] bean,String userId) throws Exception;
|
/**
|
* 分页查询
|
* @param bean
|
* @param pageParams
|
* @return
|
* @throws Exception
|
*/
|
public DataGrid queryList(EqmChangeBean bean,PageParams pageParams) throws Exception;
|
}
|