skyouc
2025-04-30 17f9f7d74b7f2f3344b335441f9bf1653cff03f0
rsf-server/src/main/java/com/vincent/rsf/server/manager/service/LocAreaMatRelaService.java
@@ -4,8 +4,22 @@
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.manager.controller.params.LocAreaMatsParam;
import com.vincent.rsf.server.manager.entity.LocAreaMatRela;
import com.vincent.rsf.server.manager.entity.LocType;
import com.vincent.rsf.server.manager.entity.LocTypeRela;
import com.vincent.rsf.server.manager.entity.MatnrGroup;
import java.util.List;
import java.util.Map;
public interface LocAreaMatRelaService extends IService<LocAreaMatRela> {
    R binMatnrs(LocAreaMatsParam param);
    Boolean removeByGroupId(Map<String, Object> params);
    boolean removeByLocType(Map<String, Object> params);
    List<MatnrGroup> getAllGroups(Long id);
    List<LocType> getAllLocType(Long id);
}