Oracle获取数据需求变更,增加获取护士提交时间
parent
61d46932d3
commit
732c8cee49
@ -0,0 +1,28 @@
|
||||
package com.emr.entity;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.stereotype.Component;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Component
|
||||
public class OracleDateVo {
|
||||
private Date finishedDateTime;
|
||||
private Date mrCommitNurseDateTime;
|
||||
public Date getFinishedDateTime() {
|
||||
return finishedDateTime;
|
||||
}
|
||||
|
||||
public void setFinishedDateTime(Date finishedDateTime) {
|
||||
this.finishedDateTime = finishedDateTime;
|
||||
}
|
||||
|
||||
public Date getMrCommitNurseDateTime() {
|
||||
return mrCommitNurseDateTime;
|
||||
}
|
||||
|
||||
public void setMrCommitNurseDateTime(Date mrCommitNurseDateTime) {
|
||||
this.mrCommitNurseDateTime = mrCommitNurseDateTime;
|
||||
}
|
||||
}
|
@ -1,8 +1,10 @@
|
||||
package com.emr.service;
|
||||
|
||||
import com.emr.entity.OracleDateVo;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Date;
|
||||
|
||||
public interface FinishedDateTimeService {
|
||||
Date findByID(Long INP_NO, Long VISIT_ID) throws IOException;
|
||||
OracleDateVo findByID(Long INP_NO, Long VISIT_ID) throws IOException;
|
||||
}
|
||||
|
Loading…
Reference in New Issue