14 lines
251 B
C#
Raw Normal View History

2025-11-15 14:33:00 +08:00

2025-11-16 15:16:51 +08:00
using MDM.Repository;
2025-11-15 14:33:00 +08:00
2025-11-16 15:16:51 +08:00
namespace MDM.Service
2025-11-15 14:33:00 +08:00
{
/// <summary>
/// 基础服务定义
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IBaseService<T> : IBaseRepository<T> where T : class, new()
{
}
}