using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Apis.Models
{
public class MapInterruptRecord
{
public string Id { get; set; }
public int RouteId { get; set; }
public string RouteUrl { get; set; }
public double EndDistance { get; set; }
public string RouteImage { get; set; }
public string RecordFileName { get; set; }
public string RouteName { get; set; }
public DateTime CreateTime { get; set; }
public bool IsCompleted { get; set; }
public string ElevationUrl { get; set; }
public double TotalDistance { get; set; }
public int UserId { get; set; }
public int? Ftp { get; set; }
public double? IF { get; set; }
public double? Kj { get; set; }
public double? Tss { get; set; }
public double? NormalizedPower { get; set; }
public double? AveragePower { get; set; }
public double? MaxPower { get; set; }
public int Ticks { get; set; }
public string TrainingTime { get; set; }
///
/// 功率体重比
///
public double? WeightKg { get; set; }
///
/// 车重
///
public double BicycleWeight { get; set; }
public double Weight { get; set; }
public double? AverageCadence { get; set; }
public double? MaxCadence { get; set; }
public double? AverageHeartRate { get; set; }
public double? MaxHeartRate { get; set; }
///
/// 用户实际骑的距离和总线路长度的比
///
public double? Progress { get; set; }
public string SpeedRange { get; set; }
public string ContinueMark { get; set; }
public int? ContinueIndex { get; set; }
public bool IsDelete { get; set; }
public int MapCompetitionId { get; set; }
public string ManufacturerName { get; set; }
public string DeviceNumber { get; set; }
public bool IsRanking { get; set; }
public double CurrentRouteStartDistance { get; set; }
public int? ManufacturerId { get; set; }
public int? AntModelId { get; set; }
public DateTime StartTime { get; set; }
///
/// 骑行模式
///
public string Mode { get; set; }
///
/// 骑行模式的参数
///
public string Param { get; set; }
public int GlobalCyclingId { get; set; }
public string Source { get; set; }
public int? LastFrame { get; set; }
public int? RoomId { get; set; }
}
}