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.

51 lines
1.1 KiB
Java

package com.docus.bgts.facade;
public interface IBgtsService {
/**
*
* @param empId
*/
4 years ago
void collect(String empId) throws Exception;
2 years ago
void collectPacs(String empId,String admissDate,String disDate,String times) throws Exception;
/**
* idpacs
* @date 2024/1/11 10:27
* @author YongBin Wen
* @param sealId id
*/
void collectSealPacs(String sealId) throws Exception;
2 years ago
void collectEcg(String empId,String admissDate,String disDate,String times) throws Exception;
void collectPacss();
/**
*
* @param emamNo
* @param empId
*/
4 years ago
void collectByExamNo(String emamNo, String empId) throws Exception;
/**
*
*
* @param startDate
* @param endDate
* @param collectorId
*/
void collectByDate(String startDate,String endDate,String collectorId);
/**
*
*/
void collectAll();
/**
*
*/
void timerCollect();
}