YD_SmartSports.Api/VOL.Entity/DomainModels/IOT/I_StuDetailInfoEntity.cs
2025-06-06 16:00:39 +08:00

121 lines
3.2 KiB
C#

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Entity.SystemModels;
namespace VOL.Entity.DomainModels
{
[Table("I_StuDetailInfoEntity")]
[Entity(TableCnName = "学生训练详细数据", TableName = "I_StuDetailInfoEntity")]
public class I_StuDetailInfoEntity : BaseEntity
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Display(Description = "主键Id")]
[Comment("Id")]
public int Id { get; set; }
/// <summary>
/// 组排名
/// </summary>
[Display(Name = "组排名")]
[Comment("组排名")]
public int GroupRanking { get; set; }
/// <summary>
/// 组编号
/// </summary>
[Display(Name = "组编号")]
[Comment("组编号")]
[Column(TypeName = "nvarchar(100)")]
public string GroupNumber { get; set; }
/// <summary>
/// 总数
/// </summary>
[Display(Name = "总数")]
[Comment("总数")]
public int TotalNumber { get; set; }
/// <summary>
/// 速度时间
/// </summary>
[Display(Name = "速度时间")]
[Comment("速度时间")]
public double SpeedTime { get; set; }
/// <summary>
/// 速度
/// </summary>
[Display(Name = "速度")]
[Comment("速度")]
public double Speed { get; set; }
/// <summary>
/// 卡路里
/// </summary>
[Display(Name = "卡路里")]
[Comment("卡路里")]
[Column(TypeName = "nvarchar(100)")]
public string Kcal { get; set; }
/// <summary>
/// 班级排名
/// </summary>
[Display(Name = "班级排名")]
[Comment("班级排名")]
public int ClassRanking { get; set; }
/// <summary>
/// 等级
/// </summary>
[Display(Name = "等级")]
[Comment("等级")]
public int Level { get; set; }
/// <summary>
/// 使用时间
/// </summary>
[Display(Name = "使用时间")]
[Comment("使用时间")]
public int UseTime { get; set; }
/// <summary>
/// 是否是组
/// </summary>
[Display(Name = "是否是组")]
[Comment("是否是组")]
public bool IsGroup { get; set; }
/// <summary>
/// 最大握力
/// </summary>
[Display(Name = "最大握力")]
[Comment("最大握力")]
public double PowerMax { get; set; }
/// <summary>
/// 总握力
/// </summary>
[Display(Name = "总握力")]
[Comment("总握力")]
public double PowerTotal { get; set; }
/// <summary>
/// 效率
/// </summary>
[Display(Name = "效率")]
[Comment("效率")]
public double Efficiency { get; set; }
/// <summary>
/// 导航属性
/// </summary>
public I_TrainGroup TrainGroup { get; set; }
}
}