自动化立体仓库 - WCS系统
#
lsh
2024-06-25 f30358a20ae9a74ee7f6c604a8d102c1b9b24659
src/main/java/com/zy/asrs/service/WrkMastExecuteService.java
@@ -3,10 +3,18 @@
import com.zy.asrs.entity.WrkMastExecute;
import com.baomidou.mybatisplus.service.IService;
import java.util.List;
public interface WrkMastExecuteService extends IService<WrkMastExecute> {
    WrkMastExecute getWrkMastByWrkNo(Long wrkNo);
    WrkMastExecute getWrkMastExecuteByWrkNo(Long wrkNo);
    Integer getWrkMastByJarIdCount(Integer jarId);
    List<WrkMastExecute> getWrkMastExecuteByJarNo(Integer jarId);
    List<WrkMastExecute> sselectWrkMastExecuteByType(Integer type);
    List<WrkMastExecute> sselectWrkMastExecuteByTypeAndIoTyper(Integer type,Integer ioType);
    Integer getWrkMastExecuteByJarIdCount(Integer jarId);
}