Files
qianhao.xu 586d2e60dc init
2024-12-03 09:25:16 +08:00

12 lines
255 B
C#

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