49 lines
1.1 KiB
C#
49 lines
1.1 KiB
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 SubmittedAssignmentsModel
|
|
{
|
|
/// <summary>
|
|
///作业Id
|
|
/// </summary>
|
|
public int HomeWorkId { get; set; }
|
|
|
|
/// <summary>
|
|
///学生学号
|
|
/// </summary>
|
|
public string StudentNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件类型
|
|
/// </summary>
|
|
public FileType FileType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件大小
|
|
/// </summary>
|
|
public int? FileSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件名称
|
|
/// </summary>
|
|
public string FileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件地址
|
|
/// </summary>
|
|
public string FilePath { get; set; }
|
|
}
|
|
}
|