LymsPatientService.java 322 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
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);
}