zjh
9 天以前 1fe9e1202299b4d5ec432baab9f98375eb950f29
ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjJianchajianyanTreeServiceImpl.java
@@ -8,6 +8,8 @@
import javax.annotation.Resource;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
/**
* @author chacca
@@ -30,6 +32,15 @@
    public int getSfsfByCardId(String cardId) {
        return mapper.getSfsfByCardId(cardId);
    }
    @Override
    public int getCallSfsfByCardId(String cardId) {
        Map<String, Object> map = new HashMap<>();
        map.put("cardId",cardId);
        mapper.getCallSfsfByCardId(map);
        return (int) (Integer) map.get("sl");
    }
}