using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Entity.WorkFlow; using Datory; namespace GxPress.Repository.Interface.WorkFlow { public interface IFlowFieldValueRepository : IRepository { Task InsertAsync(FlowFieldValue item); Task> GetListAsync(int flowId); Task DeleteAllAsync(int flowId); Task> GetFlowIdListAsync(IEnumerable flowIdList, string keyword); Task> GetAllAsync(SqlKata.Query query); /// /// 查询是否有记录 /// /// /// /// /// Task IsSearchKeywordFlowFieldValue(int processId, int flowId, string keyword); } }