package com.lyms.talkonlineweb.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.lyms.talkonlineweb.domain.LymsPushIllnessMsg;
import com.lyms.talkonlineweb.mapper.LymsPatientMapper;
import com.lyms.talkonlineweb.result.PushIllnessTypeDataResult;
import com.lyms.talkonlineweb.service.LymsPushIllnessMsgService;
import com.lyms.talkonlineweb.mapper.LymsPushIllnessMsgMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
*
*/
@Service
public class LymsPushIllnessMsgServiceImpl extends ServiceImpl<LymsPushIllnessMsgMapper, LymsPushIllnessMsg>
implements LymsPushIllnessMsgService{
@Autowired
private LymsPushIllnessMsgMapper lymsPushIllnessMsgMapper;
@Override
public List<PushIllnessTypeDataResult> getPatientIllenssType() {
return lymsPushIllnessMsgMapper.getPatientIllenssType();
}
}