| | |
| | | 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); |
| | | |
| | | } |