using DTO; using System; using System.Collections.Generic; using System.Text; namespace IServices { public interface IWfHistoryService { ResultEntity save(WfHistoryDTO dto); WfHistoryDTO Get(string id); ResultDataEntity SearchByPaging(WfHistoryDTOSearch searchEntity); ResultEntity ModifyStatus(string id, string userid); List GetList(string RunProcessId ="" ); List GetListshenpi(string RunProcessId); ResultDataEntity SearchByPagingGuanLi(WfHistoryDTOSearch searchEntity); } }