From e73d581adf6475cdab5b5e0845df4fdf95998084 Mon Sep 17 00:00:00 2001 From: ryoeiken <754264374@qq.com> Date: Tue, 29 Dec 2020 17:49:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E5=AF=B9=E5=A4=9A=E5=88=9D=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fantang/service/impl/FtPatientDaoServiceImpl.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/service/impl/FtPatientDaoServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/service/impl/FtPatientDaoServiceImpl.java index d8b78a92f..7db547a4f 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/service/impl/FtPatientDaoServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/service/impl/FtPatientDaoServiceImpl.java @@ -1,11 +1,14 @@ package com.ruoyi.system.fantang.service.impl; +import com.ruoyi.system.fantang.vo.FtPatientVo; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ruoyi.system.fantang.mapper.FtPatientDaoMapper; import com.ruoyi.system.fantang.domain.FtPatientDao; import com.ruoyi.system.fantang.service.IFtPatientDaoService; +import java.util.List; + /** * 病人管理Service业务层处理 * @@ -15,4 +18,8 @@ import com.ruoyi.system.fantang.service.IFtPatientDaoService; @Service public class FtPatientDaoServiceImpl extends ServiceImpl implements IFtPatientDaoService { + @Override + public FtPatientVo getReportMealsToday(String createAt, Long patientId) { + return this.baseMapper.getReportMealsToday(createAt, patientId); + } }