UserOutboundService.java 379 B

1234567891011121314151617
  1. package com.goafanti.customer.service;
  2. import com.goafanti.common.bo.Result;
  3. import com.goafanti.customer.bo.InputCallNumber;
  4. import java.util.Map;
  5. public interface UserOutboundService {
  6. Object checkUser(Integer type);
  7. Result callNumber(InputCallNumber in);
  8. Object blindTransferByAgent(InputCallNumber in);
  9. Object callCompleted(Map<String, String[]> in);
  10. }