From 9c7ff006100d327b1b60615304de348f5ad36c63 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期三, 16 八月 2023 09:06:14 +0800
Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/DocumentService

---
 DocumentServiceAPI.Application/WorkRemind/Services/Interfaces/IWorkRemindService.cs |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/DocumentServiceAPI.Application/WorkRemind/Services/Interfaces/IWorkRemindService.cs b/DocumentServiceAPI.Application/WorkRemind/Services/Interfaces/IWorkRemindService.cs
new file mode 100644
index 0000000..720f40c
--- /dev/null
+++ b/DocumentServiceAPI.Application/WorkRemind/Services/Interfaces/IWorkRemindService.cs
@@ -0,0 +1,31 @@
+锘縰sing DocumentServiceAPI.Application.WorkRemind.ViewMode;
+using DocumentServiceAPI.Model.cyDocumentModel;
+using DocumentServiceAPI.Utility;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DocumentServiceAPI.Application.WorkRemind.Services.Interfaces
+{
+    public interface IWorkRemindService
+    {
+        public Document_WorkRemind GetWorkRemindInfo(int ID);
+
+        public bool UpEmployee(Document_WorkRemind dw);
+
+        public bool InEmployee(Document_WorkRemind dw);
+        public List<Document_EmployeeInfo> GetUEmployeeInfoList();
+
+        public PageResult<Document_WorkRemind> postWorkRemindList(WorkRemindPageSearch page);
+
+        public bool DelEmployee(int ID);
+
+        public List<Document_Dictionary> GetDictionaryList();
+
+        public List<Sys_CitySite> GetCitySiteList(int CityLevel);
+
+        public List<DocumentEmployeeInfoDTO> GetEmployeeListByStatus(int isWork, int Role);
+    }
+}

--
Gitblit v1.9.1