109 lines
3.2 KiB
C#
109 lines
3.2 KiB
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using YD_XinWei.Api.Entitys;
|
|||
|
|
|||
|
namespace VOL.Entity.DomainModels.XinWei
|
|||
|
{
|
|||
|
[Table("XW_TrainSetting")]
|
|||
|
public class XW_TrainSetting : EntityBase
|
|||
|
{
|
|||
|
[Key]
|
|||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|||
|
[Display(Description = "主键Id")]
|
|||
|
[Comment("Id")]
|
|||
|
public int? Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 训练ID
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "TrainId")]
|
|||
|
[Comment("训练ID")]
|
|||
|
public int? TrainId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 圈数
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "CircleCount")]
|
|||
|
[Comment("圈数")]
|
|||
|
public int? CircleCount { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 每圈时间间隔
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "CircleInterval")]
|
|||
|
[Comment("每圈时间间隔")]
|
|||
|
public int? CircleInterval { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 首圈是否整圈(1-不完整,2-完整)
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "FirstCircleWhole")]
|
|||
|
[Comment("首圈是否整圈(1-不完整,2-完整)")]
|
|||
|
public decimal? FirstCircleWhole { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 首圈时间间隔
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "FirstCircleInterval")]
|
|||
|
[Comment("首圈时间间隔")]
|
|||
|
public int? FirstCircleInterval { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 保留秒以下的小数位数(1:保留百分之一秒,0:保留十分之一秒)
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "DecimalPlace")]
|
|||
|
[Comment("保留秒以下的小数位数")]
|
|||
|
public decimal? DecimalPlace { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 女生圈数
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "CircleCountGirl")]
|
|||
|
[Comment("女生圈数")]
|
|||
|
public int? CircleCountGirl { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 女生每圈时间间隔
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "CircleIntervalGirl")]
|
|||
|
[Comment("女生每圈时间间隔")]
|
|||
|
public int? CircleIntervalGirl { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 女生首圈是否整圈(1-不完整,2-完整)
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "FirstCircleWholeGirl")]
|
|||
|
[Comment("女生首圈是否整圈(1-不完整,2-完整)")]
|
|||
|
public decimal? FirstCircleWholeGirl { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 女生首圈时间间隔
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "FirstCircleIntervalGirl")]
|
|||
|
[Comment("女生首圈时间间隔")]
|
|||
|
public int? FirstCircleIntervalGirl { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 创建时间
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "CreateTime")]
|
|||
|
[Comment("创建时间")]
|
|||
|
public string CreateTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 创建人
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "CreateBy")]
|
|||
|
[Comment("创建人")]
|
|||
|
public string CreateBy { get; set; }
|
|||
|
|
|||
|
public int XW_SportsTestDataId { get; set; }
|
|||
|
|
|||
|
|
|||
|
//public XW_SportsTestData XW_SportsTestData { get; set; }
|
|||
|
}
|
|||
|
}
|