ZrAdminNetCore/ZR.ServiceCore/IBaseService.cs
2023-11-23 18:10:08 +08:00

12 lines
251 B
C#

using ZR.Repository;
namespace ZR.ServiceCore
{
/// <summary>
/// 基础服务定义
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IBaseService<T> : IBaseRepository<T> where T : class, new()
{
}
}