You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
647 B
Java
24 lines
647 B
Java
4 years ago
|
package com.docus.bgts.facade;
|
||
|
|
||
|
import javax.xml.rpc.ServiceException;
|
||
|
import java.io.UnsupportedEncodingException;
|
||
|
import java.rmi.RemoteException;
|
||
|
|
||
|
public interface IBgtsService {
|
||
|
/**
|
||
|
* 采集
|
||
|
* @param empId
|
||
|
*/
|
||
|
void collect(String empId, String collectSubId) throws Exception;
|
||
|
|
||
|
/**
|
||
|
* 按需采集
|
||
|
* @param emamNo
|
||
|
* @param empId
|
||
|
* @throws UnsupportedEncodingException
|
||
|
* @throws RemoteException
|
||
|
* @throws ServiceException
|
||
|
*/
|
||
|
void collectByExamNo(String emamNo, String empId, String collectSubId) throws UnsupportedEncodingException, RemoteException, ServiceException, Exception;
|
||
|
}
|