14 lines
251 B
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00

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