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 { List getWrkMastSplitTwin(Integer crnNo, Integer type, Integer ioType, Integer wrkType, Integer wrkSts); List getWrkMastSplitTwinNoComplete(Integer crnNo, Integer type, Integer ioType, Integer wrkType, Integer wrkSts); }