package com.shlanbao.tzsc.pms.md.FilterCount.service;
|
|
|
import com.shlanbao.tzsc.base.mapping.SchFilterCount;
|
import com.shlanbao.tzsc.base.model.DataGrid;
|
import com.shlanbao.tzsc.pms.md.FilterCount.SchFilterCountBean;
|
/**
|
* 成型配盘数量维护
|
* @author Leejean
|
* @create 2014年12月1日上午11:05:37
|
*/
|
public interface FilterCountServiceI {
|
|
/**
|
* 查询所有成型配盘数量
|
* @author Leejean
|
* @create 2014年11月26日下午5:42:08
|
* @return
|
* @throws Exception
|
*/
|
public DataGrid getAllFilterCount(SchFilterCountBean filterCount) throws Exception;
|
/**
|
* 新增成型配盘数量
|
* @author Leejean
|
* @create 2014年11月26日下午4:28:56
|
* @param WorkShopBean
|
* @throws Exception
|
*/
|
public void addFilterCount(SchFilterCountBean filterCount) throws Exception;
|
/**
|
* 编辑成型配盘数量
|
* @author Leejean
|
* @create 2014年11月26日下午4:29:04
|
* @param WorkShopBean
|
* @throws Exception
|
*/
|
public void editFilterCount(SchFilterCountBean filterCount) throws Exception;
|
/**
|
* 删除成型配盘数量
|
* @author Leejean
|
* @create 2014年11月26日下午4:29:12
|
* @param id
|
* @throws Exception
|
*/
|
public void deleteFilterCount(String id) throws Exception;
|
/**
|
* 根据ID获取成型配盘数量
|
* @author Leejean
|
* @create 2014年11月26日下午6:43:13
|
* @param id
|
* @return
|
* @throws Exception
|
*/
|
public SchFilterCountBean getFilterCountById(String id) throws Exception;
|
|
/**
|
* 批量删除
|
* @param ids
|
*/
|
void batchDdeleteFilterCount(String ids);
|
}
|