2025-01-14 14:51:07 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using TGJ.NetworkFreight.SeckillAggregateServices.Pos.UserService;
|
|
|
|
|
using YD_XinWei.Api;
|
|
|
|
|
using YD_XinWei.Api.Entitys;
|
|
|
|
|
using YD_XinWei.Commons;
|
2025-01-14 16:04:33 +08:00
|
|
|
|
using YD_XinWei.Commons.Dto.Common;
|
2025-01-14 14:51:07 +08:00
|
|
|
|
using YD_XinWei.Commons.Dto.HomeWork;
|
2025-01-15 09:32:35 +08:00
|
|
|
|
using YD_XinWei.Commons.Dto.Open;
|
2025-01-14 14:51:07 +08:00
|
|
|
|
using YD_XinWei.Commons.Dto.School;
|
|
|
|
|
|
|
|
|
|
namespace YD_XinWei.Api.Services.Interface
|
|
|
|
|
{
|
|
|
|
|
public interface IXinWeiService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2025-01-14 16:04:33 +08:00
|
|
|
|
/// 项目模式
|
2025-01-14 14:51:07 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
2025-01-14 16:04:33 +08:00
|
|
|
|
Task<List<ProjectModeDto>> SportsModelTypeList();
|
2025-01-14 14:51:07 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-01-14 16:04:33 +08:00
|
|
|
|
/// 体育项目
|
2025-01-14 14:51:07 +08:00
|
|
|
|
/// </summary>
|
2025-01-14 16:04:33 +08:00
|
|
|
|
/// <param name="orgId">学校Id</param>
|
2025-01-14 14:51:07 +08:00
|
|
|
|
/// <returns></returns>
|
2025-01-14 16:04:33 +08:00
|
|
|
|
Task<List<TestingProjectDto>> OrgSportsProjectList(int orgId);
|
2025-01-15 09:32:35 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取学生信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="orgId">学校Id</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
Task<List<StudentInfoDto>> MinimumOfStudentInfoList(int orgId);
|
2025-01-14 14:51:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|