Files
kunshan-bzfm-mes-backend/ZR.ServiceCore/IBaseService.cs

12 lines
251 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
using ZR.Repository;
namespace ZR.ServiceCore
{
/// <summary>
/// 基础服务定义
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IBaseService<T> : IBaseRepository<T> where T : class, new()
{
}
}