using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.Patriarch
{
///
/// 学生报告
///
public class StudentReportDto
{
///
/// 身体形态
///
public float BodyShape { get; set; }
///
/// 身体机能
///
public float BodyFunction { get; set; }
///
/// 身体素质
///
public float BodyQuality { get; set; }
///
/// 总得分
///
public float TotalScore { get; set; }
///
/// 各项目得分
///
public List CategoryScoreList { get; set; }
}
///
/// 各项目得分
///
public class CategoryScoreDto
{
///
/// 项目名称
///
public string Name { get; set; }
///
/// 得分
///
public float Score { get; set; }
///
/// 图片地址
///
public string ImgUrl { get; set; }
}
}