67 lines
1.6 KiB
C#
67 lines
1.6 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Entity.DomainModels;
|
|
using VOL.Entity.Enum;
|
|
|
|
namespace VOL.Model.Norm.Request
|
|
{
|
|
/// <summary>
|
|
/// 赛事新增
|
|
/// </summary>
|
|
public class AddActivitiesParam
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
///赛事名称
|
|
/// </summary>
|
|
public string ActivitiesName { get; set; }
|
|
|
|
/// <summary>
|
|
///测试类别Id
|
|
/// </summary>
|
|
public int CategoryId { get; set; }
|
|
|
|
/// <summary>
|
|
///类别名称
|
|
/// </summary>
|
|
public string CategoryName { get; set; }
|
|
|
|
/// <summary>
|
|
///状态
|
|
/// </summary>
|
|
public ActivitiesStatus ActivitiesStatus { get; set; }
|
|
|
|
/// <summary>
|
|
///活动开始时间
|
|
/// </summary>
|
|
public DateTime StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
///活动结束时间
|
|
/// </summary>
|
|
public DateTime EndDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片路径
|
|
/// </summary>
|
|
public string ImagePath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参赛人员类型
|
|
/// </summary>
|
|
public ParticipantType ParticipantType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报名学生列表
|
|
/// </summary>
|
|
public List<ActivitiesEntryDetailsModel> EntryStudentList { get; set; }
|
|
}
|
|
}
|