From 9fe1e290a2e0a316522bba191dc757f0e740b3f1 Mon Sep 17 00:00:00 2001 From: "luvian\\hjh" <2443854179@qq.com> Date: Thu, 12 Aug 2021 14:53:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E4=BA=86=E4=B8=80=E4=B8=AA=E9=A1=BE?= =?UTF-8?q?=E5=AE=A2=E7=9A=84CustomerDao=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HMS/src/main/java/com/hqyj/seven/dao/CustomerDao.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 HMS/src/main/java/com/hqyj/seven/dao/CustomerDao.java diff --git a/HMS/src/main/java/com/hqyj/seven/dao/CustomerDao.java b/HMS/src/main/java/com/hqyj/seven/dao/CustomerDao.java new file mode 100644 index 0000000..1a246c2 --- /dev/null +++ b/HMS/src/main/java/com/hqyj/seven/dao/CustomerDao.java @@ -0,0 +1,9 @@ +package com.hqyj.seven.dao; + +import com.hqyj.seven.pojo.Customer; + +import java.util.List; + +public interface CustomerDao { + List queryAll(); +} -- GitLab