gcw_MV9p2JJN a293df3710 1
2025-11-19 11:49:05 +08:00

14 lines
251 B
C#

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