qwj
2023-08-16 836da9ffd7159fcf46442ec50af73f39def01706
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using 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);
    }
}