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);
|
}
|
}
|