不做码农 be515339fe ♻️代码重构
2023-09-02 17:55:34 +08:00

12 lines
247 B
C#

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