30 lines
605 B
C#
30 lines
605 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VOL.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 训练成绩比例
|
|||
|
/// </summary>
|
|||
|
public class ItemScoreDetailsModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 训练成绩
|
|||
|
/// </summary>
|
|||
|
public int ScoreLevel { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 男性人数
|
|||
|
/// </summary>
|
|||
|
public int MaleNumber { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 女性人数
|
|||
|
/// </summary>
|
|||
|
public int FemaleNumber { get; set; }
|
|||
|
}
|
|||
|
}
|