| 1234567891011121314151617 |
- package com.goafanti.customer.service;
- import com.goafanti.common.bo.Result;
- import com.goafanti.customer.bo.InputCallNumber;
- import java.util.Map;
- public interface UserOutboundService {
- Object checkUser(Integer type);
- Result callNumber(InputCallNumber in);
- Object blindTransferByAgent(InputCallNumber in);
- Object callCompleted(Map<String, String[]> in);
- }
|