using DTO; using System; using System.Collections.Generic; using System.Text; namespace IServices { public interface IWfApplytypeService { ResultEntity save(WfApplytypeDTO dto); WfApplytypeDTO Get(string id); ResultDataEntity SearchByPaging(WfApplytypeDTOSearch searchEntity); ResultEntity ModifyStatus(string id, string userid); List GetList(); } }