28 lines
791 B
C#
28 lines
791 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using TGJ.NetworkFreight.SeckillAggregateServices.Pos.UserService;
|
|
using YD_XinWei.Api;
|
|
using YD_XinWei.Api.Entitys;
|
|
using YD_XinWei.Commons;
|
|
using YD_XinWei.Commons.Dto.HomeWork;
|
|
using YD_XinWei.Commons.Dto.School;
|
|
|
|
namespace YD_XinWei.Api.Services.Interface
|
|
{
|
|
public interface IXinWeiService
|
|
{
|
|
/// <summary>
|
|
/// 作业记录
|
|
/// </summary>
|
|
/// <param name="teacherPhoneNo"></param>
|
|
/// <returns></returns>
|
|
Task<List<HomeWorkRecordDto>> HomeWorkRecord(string teacherPhoneNo);
|
|
|
|
/// <summary>
|
|
/// 作业详情
|
|
/// </summary>
|
|
/// <param name="homeWorkId"></param>
|
|
/// <returns></returns>
|
|
Task<HomeWorkDetailsDto> HomeWorkDetails(int homeWorkId);
|
|
}
|
|
}
|