Files
dzpt/src/main/java/com/saye/hospitalgd/mapper/TranscationsMapper.java
2025-07-23 09:55:50 +08:00

26 lines
576 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.saye.hospitalgd.mapper;
import org.apache.ibatis.annotations.Mapper;
import java.util.HashMap;
import java.util.List;
/**
* Created with IntelliJ IDEA.
*
* @author Mr.zs
* @date 2023/10/8
* @description
* @modifiedBy
* @version: 1.0
*/
@Mapper
public interface TranscationsMapper {
List<HashMap<Object, Object>> findTradeRecords(HashMap<Object, Object> map);
List<HashMap<Object, Object>> findActionableTrading(HashMap<Object, Object> map);
HashMap<Object, Object> findActionableTradingByJylsh(HashMap<Object, Object> map);
}