56 lines
1.6 KiB
C#
56 lines
1.6 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.XinWei
|
|
{
|
|
[Table("XW_TrainViolationsBO")]
|
|
[Entity(TableCnName = "XW训练分析违规表", TableName = "XW_TrainViolationsBO")]
|
|
public class XW_TrainViolationsBO
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
[Display(Description = "主键Id")]
|
|
[Comment("Id")]
|
|
public int? Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 违规动作编号
|
|
/// </summary>
|
|
[Display(Name = "ViolationId")]
|
|
[Comment("违规动作编号")]
|
|
public int? ViolationId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 违规动图地址
|
|
/// </summary>
|
|
[Display(Name = "违规动图地址")]
|
|
[Comment("违规动图地址")]
|
|
public string PicUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 跳绳绊脚次数
|
|
/// </summary>
|
|
[Display(Name = "SkipStumblingNumber")]
|
|
[Comment("跳绳绊脚次数")]
|
|
public int? SkipStumblingNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 违规动作训练时间
|
|
/// </summary>
|
|
[Display(Name = "违规动作训练时间")]
|
|
[Comment("违规动作训练时间")]
|
|
public string TrainTime { get; set; }
|
|
|
|
|
|
public XW_TrainStudents XW_TrainStudents { get; set; }
|
|
}
|
|
}
|