19 lines
432 B
C#
19 lines
432 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 ISportsTestDataRepository : IDependency, IRepository<Ai_SportsTestData>
|
|||
|
{
|
|||
|
}
|
|||
|
}
|