using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Yi.Framework.Core.Sqlsugar.Repository; using Yi.Framework.Ddd.Repository; using Yi.Framework.Domain.Student.Entities; using Yi.Framework.Domain.Student.IRepository; namespace Yi.Framework.Sqlsugar.Student { /// /// 仓储实现方式 /// public class StudentRepository : SqlsugarRepository ,IStudentRepository { public StudentRepository(ISqlSugarClient context) : base(context) { } } }