init:米东项目初始化
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package com.saye.hospitalgd.service;
|
||||
|
||||
import com.saye.hospitalgd.entity.HisbillsHistory;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created with IntelliJ IDEA.
|
||||
*
|
||||
* @author: Mr.zs
|
||||
* @date: 2022/12/2
|
||||
* @description:
|
||||
* @modifiedBy:
|
||||
* @version: 1.0
|
||||
*/
|
||||
public interface HisbillsHistoryService {
|
||||
|
||||
void saveHisHistoryData(HashMap<Object, Object> hisbillsOriginal);
|
||||
|
||||
List<HashMap<Object, Object>> findHisBillsByDate(HashMap<Object, Object> searchMap);
|
||||
|
||||
List<HashMap<Object, Object>> findHisDetailByParam(HashMap<Object, Object> searchNotUniqueObjMap) throws Exception;
|
||||
|
||||
|
||||
void saveHisbillsOriginalData(List<HisbillsHistory> hisbillsHistories, String tradeDate);
|
||||
|
||||
void saveHisbillsHistoryData(List<HisbillsHistory> hisbillsHistories, String tradeDate);
|
||||
}
|
||||
Reference in New Issue
Block a user