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.Thick.Blowing.Server.Model { /// /// 信号记录 /// [Table("Sign")] public class Db_Sign { /// /// key /// [Key] [PropertyIndex(0)] public Int64 ID { get; set; } /// /// 信号时间 /// [PropertyIndex(1)] public DateTime Time { get; set; } /// /// 信号列表 SignData[] /// [PropertyIndex(2)] public string Signs { get; set; } } /// /// 辊信号记录 /// [Table("Roll")] public class Db_Roll { /// /// key /// [Key] [PropertyIndex(0)] public Int64 ID { get; set; } /// /// 开始时间 /// [PropertyIndex(1)] public DateTime Time { get; set; } /// /// 信号列表 RollCell[] /// [PropertyIndex(2)] public string Signs { get; set; } } }