From 0b5b7db96d26e3b172d43febeb8e1eba7449ab94 Mon Sep 17 00:00:00 2001 From: czx <28353131@qq.com> Date: Tue, 1 Dec 2020 15:30:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=B4=E6=97=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fantang/controller/FtReportMealsDaoController.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/FtReportMealsDaoController.java b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/FtReportMealsDaoController.java index 87ac42843..c9223188e 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/FtReportMealsDaoController.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/fantang/controller/FtReportMealsDaoController.java @@ -32,6 +32,15 @@ public class FtReportMealsDaoController extends BaseController { private final IFtReportMealsDaoService iFtReportMealsDaoService; + /** + * 查询指定用户上一次结算的日期,并通过这个日期计算未结算的天数 + */ + @GetMapping("/getLastSettlementDate/{patientId}") + public TableDataInfo getLastSettlementDate(@PathVariable("patiendId") Long patiendId) { + return null; + } + + /** * 查询所有报餐列表 */