12 lines
255 B
C#
Raw Permalink Normal View History

2026-01-10 13:47:54 +08:00
using RIZO.Repository;
namespace RIZO.ServiceCore
{
/// <summary>
/// 基础服务定义
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IBaseService<T> : IBaseRepository<T> where T : class, new()
{
}
}