24 lines
536 B
C#
24 lines
536 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Business;
|
|
using ARW.Model.Models.Business;
|
|
|
|
namespace ARW.Service.Business.IBusinessService
|
|
{
|
|
public interface IClassService : IBaseService<Class>
|
|
{
|
|
/// <summary>
|
|
/// 获取学生分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
PagedInfo<Class> GetClassList(ClassQueryDto parm);
|
|
|
|
|
|
}
|
|
}
|