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
435 B
Java
24 lines
435 B
Java
package com.ann.demo.service;
|
|
|
|
|
|
import com.ann.demo.entity.interfaceEntity.MessageLog;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Description
|
|
* @Date 2019/7/9 10:24
|
|
* @Created by ljx
|
|
*/
|
|
|
|
public interface MessageService {
|
|
|
|
public void save(MessageLog log);
|
|
|
|
//2020-3-20 获取患者信息id
|
|
String getArchiveMasterId(String inpNo,String visitId,String patientId);
|
|
|
|
String getArchiveMasterId(String inpNo,String patientId);
|
|
|
|
}
|