using Ropin.Inspection.Model.Entities;
using Ropin.Inspection.Model.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ropin.Inspection.Repository.Interface
{
///
/// 巡检点接口
///
public interface ITispSpotRepository : IRepositoryBase, IRepositoryBaseById
{
List GetTispSpotJoinContent();
Task> GetSpotContentsByQRCodeAsync(string qRCode);
Task GetSpotByQRCodeAsync(string qRCode, string storeCode);
Task GetAllSpotBySqlAsync();
Task GetDevStoreByQRCodeAsync(string qRCode, string storeCode);
}
}