package org.dromara.api; import org.dromara.api.domain.vo.RemotePetVo; import java.util.List; public interface RemotePetService { List getByIds(List petIds); List getByCustomerIds(List customerIds); }