CompetitionAPI_dotnet/Competition.Mysql/Other/achievement_data.cs

27 lines
540 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.Other
{
public class achievement_data
{
/// <summary>
/// 成绩id
/// </summary>
public string AchievementId { get; set; }
/// <summary>
/// 考试id
/// </summary>
public string ExamId { get; set; }
/// <summary>
/// 用户id
/// </summary>
public string UserId { get; set; }
}
}