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