package com.lyms.talkonlineweb.service;
import com.lyms.talkonlineweb.domain.LymsPatient;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.Map;
/**
*
*/
public interface LymsPatientService extends IService<LymsPatient> {
Map<String,String> getAppPatientHospital(Integer patientId);
}