自动化立体仓库 - WMS系统
#
yxFwq
2024-07-14 b0afecbe6abdd77a0cda7311c3212fc8ecec3312
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.service;
 
import com.zy.asrs.entity.WrkMastSplitTwin;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
 
public interface WrkMastSplitTwinService extends IService<WrkMastSplitTwin> {
    List<WrkMastSplitTwin> getWrkMastSplitTwin(Integer crnNo, Integer type, Integer ioType, Integer wrkType, Integer wrkSts);
    List<WrkMastSplitTwin> getWrkMastSplitTwinNoComplete(Integer crnNo, Integer type, Integer ioType, Integer wrkType, Integer wrkSts);
}