using SlnMesnac.Model.domain;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace SlnMesnac.Repository.service
{
public interface ILogoIdentifyService
{
///
/// 查询所有数据
///
///
Task> GetAllRecordAsync();
///
/// 指定条码查询数据
///
///
Task> GetRecordByCodeAsync(string code);
///
/// 时间段条件查询
///
///
Task> QueryAllByTime(DateTime beginTime, DateTime endTime);
///
/// 插入数据
///
///
///
bool InsertRecord(LogoIdentify ocrRecord);
}
}