2023-01-12 15:25:46 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
using System;
|
2023-01-12 14:58:16 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2023-01-14 18:16:16 +08:00
|
|
|
|
using Yi.Framework.Core.Sqlsugar.Repository;
|
|
|
|
|
|
using Yi.Framework.Ddd.Repository;
|
2023-01-12 15:25:46 +08:00
|
|
|
|
using Yi.Framework.Domain.Student.Entities;
|
|
|
|
|
|
using Yi.Framework.Domain.Student.IRepository;
|
2023-01-12 14:58:16 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Sqlsugar.Student
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 仓储实现方式
|
|
|
|
|
|
/// </summary>
|
2023-01-14 18:16:16 +08:00
|
|
|
|
public class StudentRepository : SqlsugarRepository<StudentEntity> ,IStudentRepository
|
2023-01-12 14:58:16 +08:00
|
|
|
|
{
|
2023-01-14 18:16:16 +08:00
|
|
|
|
public StudentRepository(ISqlSugarClient context) : base(context)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2023-01-12 14:58:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|