using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkProcess; using Datory; namespace GxPress.Repository.Interface.WorkProcess { public interface IRuleApproverCheckRepository : IRepository { Task InsertAsync(RuleApproverCheck rule); Task> GetListAsync(int nodeId); Task DeleteByNodeIdListAsync(IEnumerable nodeIdList); } }