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 IDeviceAssocSchoolRepository : IDependency, IRepository<Ai_DeviceAssocSchool>
|
|
{
|
|
}
|
|
}
|