using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model { /// /// 体质监测 /// public class PhysicalMonitoring { /// /// 排行 /// public int Ranking { get; set; } /// /// 年级班级 /// public string GradeAndClassName { get; set; } /// /// 优良率 /// public double ExcellentRate { get; set; } } }