using Ropin.Inspection.Model; using Ropin.Inspection.Model.ViewModel; using Ropin.Inspection.Service.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service { public interface ITmtnDevOperateRecordService : IBaseService, IBaseServiceById { Task> GetAllAsync(); Task> GetByConditionAsync(Expression> expression); Task UpdateAsync(string code, TmtnDevOperateRecordUpdateModel updateModel); Task> GetConditionAsync(TmtnDevOperateRecordSearchModel searchModel); Task DeleteAsync(string code); Task GetDevOpsStatisticsAsync(string storeCode); Task> GetDevOpsStatisticsFullScreenAsync(string storeCode); Task GetDevOpsRecordItemAsync(string devId, string repairId); } }