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
38
package com.slcf.service;
 
import java.util.List;
 
import com.slcf.pojo.StaDescBean;
 
/**
 * 站点定义接口
 * @author admin
 * @date 2018年12月1日
 */
public interface StaDescService {
 
    public int insertStaDesc(StaDescBean staDesc);
    
    public int upStaDesc(StaDescBean staDesc);
    
    public int delStaDesc(int type_id);
    
    public List<StaDescBean> queryStaDescList(int spage, int epage);
    
    //统计数量
    public int queryStaDescCount();
        
    public StaDescBean queryStaDescById(int id);
    
    //根据type_no查询
    public List<StaDescBean> queryStaDescByTypeNo(int type_no);
    
    //查询所有
    public List<StaDescBean> getStaDescList();
    
    /**
     * 根据类型,源站点、堆垛机查询目标站点
     * @return
     */
    public int queryStnByTypeStnCrn(StaDescBean staDescBean);
}