using SQLite;
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;
namespace FLY.FeedbackRenZiJia.Server.Model
{
///
/// 厚度记录
///
[Table("ThickHeat")]
public class Db_ThickHeat
{
[Key]
[PropertyIndex(0)]
public Int64 ID { get; set; }
///
/// 测量数据开始时间
///
[PropertyIndex(1)]
public DateTime Time { get; set; }
///
/// 测量数据结束时间
///
[PropertyIndex(2)]
public DateTime EndTime { get; set; }
///
/// 旋转方向 是反向
///
[PropertyIndex(3)]
public bool IsBackw { get; set; }
///
/// 旋转1周的时间 min
///
[PropertyIndex(4)]
public double RPeriod { get; set; }
///
/// 旋转次数
///
[PropertyIndex(5)]
public int RCnt { get; set; }
///
/// 复位区号
///
[PropertyIndex(6)]
public int OrgBoltNo { get; set; }
///
/// 旋转角度 °
///
[PropertyIndex(7)]
public double RAngle { get; set; }
///
/// 膜距离 m
///
[PropertyIndex(8)]
public double FilmLength { get; set; }
///
/// 线速度
///
[PropertyIndex(9)]
public double FilmVelocity { get; set; }
///
/// 斜率补偿
///
[PropertyIndex(10)]
public double K { get; set; }
///
/// 1幅数据
///
[PropertyIndex(11)]
public string Thicks { get; set; }
///
/// 分区表
///
[PropertyIndex(12)]
public string Boltmap { get; set; }
///
/// 加热生效
///
[PropertyIndex(13)]
public bool IsStable { get; set; }
///
/// 开始改变加热时间
///
[PropertyIndex(14)]
public DateTime HTime { get; set; }
///
/// 1幅加热数据 % json
///
[PropertyIndex(15)]
public string Heats { get; set; }
}
}