19 lines
280 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
using Mapster;
2025-11-16 15:16:51 +08:00
using MDM.Model;
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 class BaseService<T> : BaseRepository<T> where T : class, new()
{
}
}