LymsPushIllnessMsgServiceImpl.java 964 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
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();
}
}