19 lines
418 B
C#
19 lines
418 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
using VOL.Entity.DomainModels;
|
|
|
|
namespace VOL.Ai.IRepositories
|
|
{
|
|
/// <summary>
|
|
/// 心率数据
|
|
/// </summary>
|
|
public interface IHeartRateDataRepository : IDependency, IRepository<Ai_HeartRateData>
|
|
{
|
|
}
|
|
}
|