From 27df1079c1d230fab29f565f5209f2a02e0def8a Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 20 七月 2026 16:56:51 +0800
Subject: [PATCH] 省立同德的功能
---
smartor/src/main/java/com/smartor/mapper/ServiceAppointRecordMapper.java | 63 +++++++++++++++++++++++++++++++
1 files changed, 63 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/mapper/ServiceAppointRecordMapper.java b/smartor/src/main/java/com/smartor/mapper/ServiceAppointRecordMapper.java
new file mode 100644
index 0000000..7d51d2c
--- /dev/null
+++ b/smartor/src/main/java/com/smartor/mapper/ServiceAppointRecordMapper.java
@@ -0,0 +1,63 @@
+package com.smartor.mapper;
+
+import java.util.List;
+import org.apache.ibatis.annotations.Mapper;
+import com.smartor.domain.ServiceAppointRecord;
+
+/**
+ * 棰勭害璁板綍Mapper鎺ュ彛
+ *
+ * @author lihu
+ * @date 2026-07-06
+ */
+@Mapper
+public interface ServiceAppointRecordMapper
+{
+ /**
+ * 鏌ヨ棰勭害璁板綍
+ *
+ * @param id 棰勭害璁板綍涓婚敭
+ * @return 棰勭害璁板綍
+ */
+ public ServiceAppointRecord selectServiceAppointRecordById(Long id);
+
+ /**
+ * 鏌ヨ棰勭害璁板綍鍒楄〃
+ *
+ * @param serviceAppointRecord 棰勭害璁板綍
+ * @return 棰勭害璁板綍闆嗗悎
+ */
+ public List<ServiceAppointRecord> selectServiceAppointRecordList(ServiceAppointRecord serviceAppointRecord);
+
+ /**
+ * 鏂板棰勭害璁板綍
+ *
+ * @param serviceAppointRecord 棰勭害璁板綍
+ * @return 缁撴灉
+ */
+ public int insertServiceAppointRecord(ServiceAppointRecord serviceAppointRecord);
+
+ /**
+ * 淇敼棰勭害璁板綍
+ *
+ * @param serviceAppointRecord 棰勭害璁板綍
+ * @return 缁撴灉
+ */
+ public int updateServiceAppointRecord(ServiceAppointRecord serviceAppointRecord);
+
+ /**
+ * 鍒犻櫎棰勭害璁板綍
+ *
+ * @param id 棰勭害璁板綍涓婚敭
+ * @return 缁撴灉
+ */
+ public int deleteServiceAppointRecordById(Long id);
+
+ /**
+ * 鎵归噺鍒犻櫎棰勭害璁板綍
+ *
+ * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎
+ * @return 缁撴灉
+ */
+ public int deleteServiceAppointRecordByIds(Long[] ids);
+}
--
Gitblit v1.9.3