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

14 lines
258 B
C#

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