package com.slcf.service;
|
|
import java.util.List;
|
|
import com.slcf.pojo.WhsTypeBean;
|
|
/**
|
* 仓库类型接口
|
* @author admin
|
* @date 2018年11月26日
|
*/
|
public interface WhsTypeService {
|
|
//添加工作状态信息
|
public int insertWhsType(WhsTypeBean whsType);
|
|
//统计数量
|
public int queryWhsTypeCount();
|
|
//查询所有
|
public List<WhsTypeBean> queryWhsTypeList(int spage,int epage);
|
|
//根据id查询
|
public WhsTypeBean queryWhsTypeById(int id);
|
|
//更新工作状态信息
|
public int upWhsType(WhsTypeBean whsType);
|
|
//根据id删除工作状态信息
|
public int delWhsType(int id);
|
|
/**
|
* 查询所有工作状态信息
|
* @return
|
*/
|
public List<WhsTypeBean> getWhsTypeList();
|
}
|