using FreeSql.DataAnnotations; using Newtonsoft.Json; namespace MoviconWebApi.Entities { /// /// 测试数据 /// [Table(Name = "TestData")] public class TestData { /// /// 主键ID /// [Column(IsPrimary = true, IsIdentity = true)] public long Id { get; set; } /// /// 构架设备状态​ /// [JsonProperty("Test_FrameworkEquipmentStatus")] [Column(Name = "Test_FrameworkEquipmentStatus", StringLength = 100, IsNullable = true)] public string? Test_FrameworkEquipmentStatus { get; set; } /// /// 零部件设备状态​ /// [JsonProperty("Test_PartsEquipmentStatus")] [Column(Name = "Test_PartsEquipmentStatus", StringLength = 100, IsNullable = true)] public string? Test_PartsEquipmentStatus { get; set; } /// /// ​构架累计用清洗剂量​ /// [JsonProperty("Test_FrameworkCumulativeCleaningAgentUsage")] [Column(Name = "Test_FrameworkCumulativeCleaningAgentUsage", StringLength = 100, IsNullable = true)] public string? Test_FrameworkCumulativeCleaningAgentUsage { get; set; } /// /// 构架累计用水量​ /// [JsonProperty("Test_FrameworkCumulativeWaterUsage")] [Column(Name = "Test_FrameworkCumulativeWaterUsage", StringLength = 100, IsNullable = true)] public string? Test_FrameworkCumulativeWaterUsage { get; set; } /// /// 构架累计清洗时长​ /// [JsonProperty("Test_FrameworkCumulativeCleaningDuration")] [Column(Name = "Test_FrameworkCumulativeCleaningDuration", StringLength = 100, IsNullable = true)] public string? Test_FrameworkCumulativeCleaningDuration { get; set; } /// /// 零部件累计用水量 /// [JsonProperty("Test_PartsCumulativeWaterUsage")] [Column(Name = "Test_PartsCumulativeWaterUsage", StringLength = 100, IsNullable = true)] public string? Test_PartsCumulativeWaterUsage { get; set; } /// /// ​零部件累计清洗时长​ /// [JsonProperty("Test_PartsCumulativeCleaningDuration")] [Column(Name = "Test_PartsCumulativeCleaningDuration", StringLength = 100, IsNullable = true)] public string? Test_PartsCumulativeCleaningDuration { get; set; } /// /// 累计检修数量​ /// [JsonProperty("Test_CumulativeMaintenanceCount")] [Column(Name = "Test_CumulativeMaintenanceCount", StringLength = 100, IsNullable = true)] public string? Test_CumulativeMaintenanceCount { get; set; } /// /// ​机器人1状态​ /// [JsonProperty("Test_Robot1Status")] [Column(Name = "Test_Robot1Status", StringLength = 100, IsNullable = true)] public string? Test_Robot1Status { get; set; } /// /// 机器人2状态​ /// [JsonProperty("Test_Robot2Status")] [Column(Name = "Test_Robot2Status", StringLength = 100, IsNullable = true)] public string? Test_Robot2Status { get; set; } /// /// 构架清洗数量 /// [JsonProperty("Test_FrameworkCleaningCount")] [Column(Name = "Test_FrameworkCleaningCount", StringLength = 100, IsNullable = true)] public string? Test_FrameworkCleaningCount { get; set; } /// /// 构架单个机型清洗时长​ /// [JsonProperty("Test_FrameworkPerModelCleaningDuration")] [Column(Name = "Test_FrameworkPerModelCleaningDuration", StringLength = 100, IsNullable = true)] public string? Test_FrameworkPerModelCleaningDuration { get; set; } /// /// ​​构架单个机型用清洗剂量​ /// [JsonProperty("Test_FrameworkPerModelCleaningAgentUsage")] [Column(Name = "Test_FrameworkPerModelCleaningAgentUsage", StringLength = 100, IsNullable = true)] public string? Test_FrameworkPerModelCleaningAgentUsage { get; set; } /// /// ​构架单个机型用水量​ /// [JsonProperty("Test_FrameworkPerModelWaterUsage")] [Column(Name = "Test_FrameworkPerModelWaterUsage", StringLength = 100, IsNullable = true)] public string? Test_FrameworkPerModelWaterUsage { get; set; } /// /// ​​零部件单次清洗时长​ /// [JsonProperty("Test_PartsSingleCleaningDuration")] [Column(Name = "Test_PartsSingleCleaningDuration", StringLength = 100, IsNullable = true)] public string? Test_PartsSingleCleaningDuration { get; set; } /// /// 零部件单次用水量​ /// [JsonProperty("Test_PartsSingleWaterUsage")] [Column(Name = "Test_PartsSingleWaterUsage", StringLength = 100, IsNullable = true)] public string? Test_PartsSingleWaterUsage { get; set; } /// /// ​水罐温度​ /// [JsonProperty("Test_WaterTankTemperature")] [Column(Name = "Test_WaterTankTemperature", StringLength = 100, IsNullable = true)] public string? Test_WaterTankTemperature { get; set; } /// /// ​​清洗剂罐温度​ /// [JsonProperty("Test_CleaningAgentTankTemperature")] [Column(Name = "Test_CleaningAgentTankTemperature", StringLength = 100, IsNullable = true)] public string? Test_CleaningAgentTankTemperature { get; set; } /// /// 浸泡池1温度​ /// [JsonProperty("Test_SoakingTank1Temperature")] [Column(Name = "Test_SoakingTank1Temperature", StringLength = 100, IsNullable = true)] public string? Test_SoakingTank1Temperature { get; set; } /// /// ​浸泡池2温度​ /// [JsonProperty("Test_SoakingTank2Temperature")] [Column(Name = "Test_SoakingTank2Temperature", StringLength = 100, IsNullable = true)] public string? Test_SoakingTank2Temperature { get; set; } /// /// ​水罐液位​​ /// [JsonProperty("Test_WaterTankLevel")] [Column(Name = "Test_WaterTankLevel", StringLength = 100, IsNullable = true)] public string? Test_WaterTankLevel { get; set; } /// /// ​清洗剂罐液位​​ /// [JsonProperty("Test_CleaningAgentTankLevel")] [Column(Name = "Test_CleaningAgentTankLevel", StringLength = 100, IsNullable = true)] public string? Test_CleaningAgentTankLevel { get; set; } /// /// ///////////////////////////////////////////导航属性/////////////////////////////////////////////////////// /// public long DataReocrdId { get; set; } public DataReocrd? DataReocrd { get; set; } } }