package com.zy.asrs.service; import com.zy.asrs.entity.WrkMastExecute; import com.baomidou.mybatisplus.service.IService; import java.util.List; public interface WrkMastExecuteService extends IService { WrkMastExecute getWrkMastExecuteByWrkNo(Long wrkNo); List getWrkMastExecuteByJarNo(Integer jarId); List selectWrkMastExecuteByType(Integer type); List selectWrkMastExecuteByTypeAndIoTyperAndWrkType(Integer type,Integer ioType,Integer wrkType); List selectWrkMastExecuteByWrk(WrkMastExecute wrkMastExecute); Integer getWrkMastExecuteByJarIdCount(Integer jarId); }