查询Oracle数据库,获取最后完成时间,已经测试通过,请具体查看注释
parent
da3ab83bad
commit
df3ab75b43
@ -0,0 +1,8 @@
|
||||
package com.emr.dao;
|
||||
|
||||
import com.emr.entity.FinishedDateTime;
|
||||
|
||||
|
||||
public interface FinishedDateTimeMapper {
|
||||
FinishedDateTime findByID(Long INP_NO, Long VISIT_ID);
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package com.emr.service;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Date;
|
||||
|
||||
public interface FinishedDateTimeService {
|
||||
Date findByID(Long INP_NO, Long VISIT_ID) throws IOException;
|
||||
}
|
Loading…
Reference in New Issue