RemotePetService.java 251 B

1234567891011
  1. package org.dromara.api;
  2. import org.dromara.api.domain.vo.RemotePetVo;
  3. import java.util.List;
  4. public interface RemotePetService {
  5. List<RemotePetVo> getByIds(List<Long> petIds);
  6. List<RemotePetVo> getByCustomerIds(List<Long> customerIds);
  7. }