添加项目文件。
This commit is contained in:
195
MoviconWebApi/Entities/TestData.cs
Normal file
195
MoviconWebApi/Entities/TestData.cs
Normal file
@@ -0,0 +1,195 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MoviconWebApi.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 测试数据
|
||||
/// </summary>
|
||||
[Table(Name = "TestData")]
|
||||
public class TestData
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键ID
|
||||
/// </summary>
|
||||
[Column(IsPrimary = true, IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 构架设备状态
|
||||
/// </summary>
|
||||
[JsonProperty("Test_FrameworkEquipmentStatus")]
|
||||
[Column(Name = "Test_FrameworkEquipmentStatus", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_FrameworkEquipmentStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零部件设备状态
|
||||
/// </summary>
|
||||
[JsonProperty("Test_PartsEquipmentStatus")]
|
||||
[Column(Name = "Test_PartsEquipmentStatus", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_PartsEquipmentStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 构架累计用清洗剂量
|
||||
/// </summary>
|
||||
[JsonProperty("Test_FrameworkCumulativeCleaningAgentUsage")]
|
||||
[Column(Name = "Test_FrameworkCumulativeCleaningAgentUsage", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_FrameworkCumulativeCleaningAgentUsage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 构架累计用水量
|
||||
/// </summary>
|
||||
[JsonProperty("Test_FrameworkCumulativeWaterUsage")]
|
||||
[Column(Name = "Test_FrameworkCumulativeWaterUsage", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_FrameworkCumulativeWaterUsage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 构架累计清洗时长
|
||||
/// </summary>
|
||||
[JsonProperty("Test_FrameworkCumulativeCleaningDuration")]
|
||||
[Column(Name = "Test_FrameworkCumulativeCleaningDuration", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_FrameworkCumulativeCleaningDuration { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零部件累计用水量
|
||||
/// </summary>
|
||||
[JsonProperty("Test_PartsCumulativeWaterUsage")]
|
||||
[Column(Name = "Test_PartsCumulativeWaterUsage", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_PartsCumulativeWaterUsage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零部件累计清洗时长
|
||||
/// </summary>
|
||||
[JsonProperty("Test_PartsCumulativeCleaningDuration")]
|
||||
[Column(Name = "Test_PartsCumulativeCleaningDuration", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_PartsCumulativeCleaningDuration { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 累计检修数量
|
||||
/// </summary>
|
||||
[JsonProperty("Test_CumulativeMaintenanceCount")]
|
||||
[Column(Name = "Test_CumulativeMaintenanceCount", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_CumulativeMaintenanceCount { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 机器人1状态
|
||||
/// </summary>
|
||||
[JsonProperty("Test_Robot1Status")]
|
||||
[Column(Name = "Test_Robot1Status", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_Robot1Status { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 机器人2状态
|
||||
/// </summary>
|
||||
[JsonProperty("Test_Robot2Status")]
|
||||
[Column(Name = "Test_Robot2Status", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_Robot2Status { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 构架清洗数量
|
||||
/// </summary>
|
||||
[JsonProperty("Test_FrameworkCleaningCount")]
|
||||
[Column(Name = "Test_FrameworkCleaningCount", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_FrameworkCleaningCount { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 构架单个机型清洗时长
|
||||
/// </summary>
|
||||
[JsonProperty("Test_FrameworkPerModelCleaningDuration")]
|
||||
[Column(Name = "Test_FrameworkPerModelCleaningDuration", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_FrameworkPerModelCleaningDuration { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 构架单个机型用清洗剂量
|
||||
/// </summary>
|
||||
[JsonProperty("Test_FrameworkPerModelCleaningAgentUsage")]
|
||||
[Column(Name = "Test_FrameworkPerModelCleaningAgentUsage", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_FrameworkPerModelCleaningAgentUsage { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 构架单个机型用水量
|
||||
/// </summary>
|
||||
[JsonProperty("Test_FrameworkPerModelWaterUsage")]
|
||||
[Column(Name = "Test_FrameworkPerModelWaterUsage", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_FrameworkPerModelWaterUsage { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 零部件单次清洗时长
|
||||
/// </summary>
|
||||
[JsonProperty("Test_PartsSingleCleaningDuration")]
|
||||
[Column(Name = "Test_PartsSingleCleaningDuration", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_PartsSingleCleaningDuration { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 零部件单次用水量
|
||||
/// </summary>
|
||||
[JsonProperty("Test_PartsSingleWaterUsage")]
|
||||
[Column(Name = "Test_PartsSingleWaterUsage", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_PartsSingleWaterUsage { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 水罐温度
|
||||
/// </summary>
|
||||
[JsonProperty("Test_WaterTankTemperature")]
|
||||
[Column(Name = "Test_WaterTankTemperature", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_WaterTankTemperature { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 清洗剂罐温度
|
||||
/// </summary>
|
||||
[JsonProperty("Test_CleaningAgentTankTemperature")]
|
||||
[Column(Name = "Test_CleaningAgentTankTemperature", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_CleaningAgentTankTemperature { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 浸泡池1温度
|
||||
/// </summary>
|
||||
[JsonProperty("Test_SoakingTank1Temperature")]
|
||||
[Column(Name = "Test_SoakingTank1Temperature", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_SoakingTank1Temperature { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 浸泡池2温度
|
||||
/// </summary>
|
||||
[JsonProperty("Test_SoakingTank2Temperature")]
|
||||
[Column(Name = "Test_SoakingTank2Temperature", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_SoakingTank2Temperature { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 水罐液位
|
||||
/// </summary>
|
||||
[JsonProperty("Test_WaterTankLevel")]
|
||||
[Column(Name = "Test_WaterTankLevel", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_WaterTankLevel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 清洗剂罐液位
|
||||
/// </summary>
|
||||
[JsonProperty("Test_CleaningAgentTankLevel")]
|
||||
[Column(Name = "Test_CleaningAgentTankLevel", StringLength = 100, IsNullable = true)]
|
||||
public string? Test_CleaningAgentTankLevel { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
|
||||
/// </summary>
|
||||
|
||||
public long DataReocrdId { get; set; }
|
||||
public DataReocrd? DataReocrd { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user