using System; using System.Collections.Generic; namespace DAL.New_Models; public partial class TbModelDetail { /// /// ID /// public int Id { get; set; } /// /// 主表ID /// public int ModelId { get; set; } /// /// 状态 /// public string ModelStatus { get; set; } = null!; /// /// 开关 /// public bool? OnOff { get; set; } /// /// 类型:手动0,自动1 /// public bool? ModelType { get; set; } /// /// 速度:停止0,低速1,中速2,高速3 /// public int? Speed { get; set; } /// /// 夏季温度 /// public int? SummerTemp { get; set; } /// /// 冬季温度 /// public int? WinterTemp { get; set; } /// /// 定时控制 /// public bool? TimingControl { get; set; } /// /// 定时时长(分钟/每小时) /// public int? Timer { get; set; } /// /// 允许用电 /// public bool? AllowElectric { get; set; } public virtual TbModel Model { get; set; } = null!; }