36 lines
797 B
C#
36 lines
797 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Entity.Enum;
|
|
|
|
namespace VOL.Model.HomeWork
|
|
{
|
|
/// <summary>
|
|
/// 作业下学生列表
|
|
/// </summary>
|
|
public class HomeWorkStudentsParam : PageDto
|
|
{
|
|
/// <summary>
|
|
/// 作业Id
|
|
/// </summary>
|
|
public int HomeWorkId { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 作业详情
|
|
/// </summary>
|
|
|
|
public class SubmittedAssignmentsParam : HomeWorkStudentsParam
|
|
{
|
|
/// <summary>
|
|
/// 学号
|
|
/// </summary>
|
|
public string StudentNo { get; set; }
|
|
}
|
|
}
|