From 5d4451ec2793f77303edb9cbeac86b5869b1cd1e Mon Sep 17 00:00:00 2001 From: ryoeiken <754264374@qq.com> Date: Tue, 29 Dec 2020 17:49:33 +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 --- .../ruoyi/system/fantang/service/IFtPatientDaoService.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/service/IFtPatientDaoService.java b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/service/IFtPatientDaoService.java index 9796f4e78..f287fc973 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/service/IFtPatientDaoService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/service/IFtPatientDaoService.java @@ -2,6 +2,9 @@ package com.ruoyi.system.fantang.service; import com.ruoyi.system.fantang.domain.FtPatientDao; import com.baomidou.mybatisplus.extension.service.IService; +import com.ruoyi.system.fantang.vo.FtPatientVo; + +import java.util.List; /** * 病人管理Service接口 @@ -11,4 +14,5 @@ import com.baomidou.mybatisplus.extension.service.IService; */ public interface IFtPatientDaoService extends IService { + FtPatientVo getReportMealsToday(String createAt, Long patientId ); }