Fix Bug #562: fallback修复
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.openhs.application.service;
|
||||
|
||||
import com.openhis.application.domain.entity.OrderMain;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 医嘱业务接口
|
||||
*
|
||||
* 新增分页查询方法 listPendingOrders,用于门诊医生工作站‑待写病历页面。
|
||||
*/
|
||||
public interface OrderService {
|
||||
|
||||
/**
|
||||
* 分页查询待写病历的医嘱列表。
|
||||
*
|
||||
* @param patientId 患者主键
|
||||
* @param pageNum 页码(可为 null,使用默认值 1)
|
||||
* @param pageSize 每页记录数(可为 null,使用默认值 20)
|
||||
* @return OrderMain 列表(已分页)
|
||||
*/
|
||||
List<OrderMain> listPendingOrders(Long patientId, Integer pageNum, Integer pageSize);
|
||||
|
||||
// 其它业务方法的声明保持不变...
|
||||
void saveOrder(com.openhis.application.domain.entity.OrderMain orderMain,
|
||||
java.util.List<com.openhis.application.domain.entity.OrderDetail> details);
|
||||
}
|
||||
Reference in New Issue
Block a user