2022-03-19 08:04:08 +08:00
|
|
|
|
using ZR.Repository;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 基础服务定义
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
2022-03-19 08:04:08 +08:00
|
|
|
|
public class BaseService<T> : BaseRepository<T> where T : class, new()
|
2021-08-23 16:57:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|