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.

20 lines
395 B
Java

package com.docus.bgts.facade;
import java.io.UnsupportedEncodingException;
import java.rmi.RemoteException;
public interface IBgtsService {
/**
*
* @param empId
*/
4 years ago
void collect(String empId) throws Exception;
/**
*
* @param emamNo
* @param empId
*/
4 years ago
void collectByExamNo(String emamNo, String empId) throws Exception;
}