74 lines
1.6 KiB
C#
74 lines
1.6 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;
|
|||
|
using VOL.Entity.DomainModels;
|
|||
|
|
|||
|
namespace VOL.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 添加报名信息
|
|||
|
/// </summary>
|
|||
|
public class AddActivitiesEntryParam
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Id
|
|||
|
/// </summary>
|
|||
|
public int Id { get; set; }
|
|||
|
/// <summary>
|
|||
|
///赛事Id
|
|||
|
/// </summary>
|
|||
|
public int ActivitiesId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 参赛对象
|
|||
|
/// </summary>
|
|||
|
public string Participants { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 报名学生列表
|
|||
|
/// </summary>
|
|||
|
public List<string> StudentNoList{ get; set; }
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// 报名学生
|
|||
|
/// </summary>
|
|||
|
public class EntryStudentModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Id
|
|||
|
/// </summary>
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///年级Id
|
|||
|
/// </summary>
|
|||
|
public int GradeId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///班级Id
|
|||
|
/// </summary>
|
|||
|
public int ClassId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///学生学号
|
|||
|
/// </summary>
|
|||
|
public string StudentNo { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///性别
|
|||
|
/// </summary>
|
|||
|
public SexType Sex { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///学生照片
|
|||
|
/// </summary>
|
|||
|
public string Photo { get; set; }
|
|||
|
}
|
|||
|
}
|