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.
23 lines
550 B
Java
23 lines
550 B
Java
2 years ago
|
package com.ann.demo.service;
|
||
|
|
||
|
import com.ann.demo.entity.interfaceEntity.ExamApply;
|
||
|
|
||
|
/**
|
||
|
* @Author: LeiJiaXin
|
||
|
* @Date: 2019/8/22 16:20
|
||
|
*/
|
||
|
public interface ExamApplyService {
|
||
|
|
||
|
public void save(ExamApply examApply);
|
||
|
|
||
|
/* public boolean updateExamApplyIsValidById(String id);*/
|
||
|
|
||
|
//public String findId(String applyId,String inpNo,String visitId,String patientId);
|
||
|
|
||
|
public ExamApply findExamApply(String applyId);
|
||
|
|
||
|
Integer countExamApply(String applyId);
|
||
|
|
||
|
boolean updateExamApplyIsValid(String applyId) throws Exception;
|
||
|
}
|