You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
796 B
C#

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