23 lines
371 B
C#
23 lines
371 B
C#
using New_College.IRepository.Base;
|
|
using New_College.Model.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Repository
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public interface ID_XiaoEtongUserRepository : IBaseRepository<D_XiaoEtongUser>
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|