18516761980
2021-06-07 f5da19565cebc364d23a65ebe931b3c38cecfa09
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
37
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();
}