From 81aa0cb2a8f563075eef1d4101024c3fd9cb2205 Mon Sep 17 00:00:00 2001
From: TWW <15834156+tangweiwei111@user.noreply.gitee.com>
Date: 星期五, 08 八月 2025 15:30:04 +0800
Subject: [PATCH] 考勤管理后端代码

---
 src/main/java/com/ruoyi/personnelManagement/service/IEmployeeContractService.java |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/personnelManagement/service/IEmployeeContractService.java b/src/main/java/com/ruoyi/personnelManagement/service/IEmployeeContractService.java
new file mode 100644
index 0000000..af6bba4
--- /dev/null
+++ b/src/main/java/com/ruoyi/personnelManagement/service/IEmployeeContractService.java
@@ -0,0 +1,24 @@
+package com.ruoyi.personnelManagement.service;
+
+import java.util.List;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.ruoyi.personnelManagement.pojo.EmployeeContract;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * 鍛樺伐鍚堝悓淇℃伅Service鎺ュ彛
+ * 
+ * @author ruoyi
+ * @date 2025-08-08
+ */
+public interface IEmployeeContractService extends IService<EmployeeContract>
+{
+
+
+    IPage<EmployeeContract> contractList(Page page, EmployeeContract employeeContract);
+
+
+    int insertContract(EmployeeContract employeeContract);
+}

--
Gitblit v1.9.3