using SlnMesnac.Model.domain;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace SlnMesnac.Repository.service
{
public interface ILogoIdentifyService
{
///
/// 查询所有数据
///
///
List GetAllRecord();
///
/// 时间段条件查询
///
///
Task> QueryAllByTime(string time1, string time2);
///
/// 插入数据
///
///
///
bool InsertRecord(LogoIdentify ocrRecord);
}
}