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