自动化立体仓库 - WCS系统
#
lsh
2024-06-25 f30358a20ae9a74ee7f6c604a8d102c1b9b24659
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
package com.zy.asrs.service;
 
import com.zy.asrs.entity.BasJarMast;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
 
public interface BasJarMastService extends IService<BasJarMast> {
 
    BasJarMast getJarMastByWrkNo(Long wrkNo);
 
    List<BasJarMast> getJarMastByJarId(Integer jarId);
 
    List<BasJarMast> getJarMastByJarIdAndStatusList(Integer jarId,Integer statusStart,Integer statusEnd);
 
    List<BasJarMast> getJarMastByJarIdAndStatusList(Integer jarId,List<Integer> statusList);
 
    List<BasJarMast> getJarMastByJarIdAndStatusList(Integer jarId,Integer type);
 
    BasJarMast getJarMastByJarIdMax(Integer jarId);
 
    BasJarMast getJarMastByJarIdMax(Integer jarId,Integer statusStart,Integer statusEnd);
 
    BasJarMast getJarMastByJarIdMin(Integer jarId);
 
    BasJarMast getJarMastByJarIdMin(Integer jarId,Integer statusStart,Integer statusEnd);
 
    Integer getJarMastByJarIdCount(Integer jarId);
 
    Integer selectJarMastOperation(Integer jarId,Integer statusStart,Integer statusEnd);
 
    Integer selectJarMastOperation(Integer jarId,List<Integer> statusList);
 
    Integer selectJarMastOperation(Integer jarId,Integer type);
 
}