32 lines
864 B
C#
32 lines
864 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using New_College.IServices.BASE;
|
|
using New_College.Model;
|
|
using New_College.Model.Models;
|
|
using New_College.Model.ViewModels;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IServices
|
|
{
|
|
/// <summary>
|
|
/// ID_PlanMajorDescProServices
|
|
/// </summary>
|
|
public interface ID_PlanMajorDescProServices :IBaseServices<D_PlanMajorDescPro>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 扩缩招院校
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
Task<PageModel<UniversityPlanProView>> GetUniversityPlanPro(UniversityProViewQuery request);
|
|
|
|
|
|
/// <summary>
|
|
/// 扩缩招专业
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
Task<MajorPlanProView> GetMajorPlanPro(MajorPlanProViewQuery request);
|
|
}
|
|
} |