30 lines
598 B
C#
30 lines
598 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 PhysicalMonitoring
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 排行
|
|||
|
/// </summary>
|
|||
|
public int Ranking { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 年级班级
|
|||
|
/// </summary>
|
|||
|
public string GradeAndClassName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 优良率
|
|||
|
/// </summary>
|
|||
|
public double ExcellentRate { get; set; }
|
|||
|
}
|
|||
|
}
|