191 lines
6.4 KiB
C#
191 lines
6.4 KiB
C#
using FreeSql.DataAnnotations;
|
||
using Newtonsoft.Json;
|
||
|
||
namespace MoviconWebApi.Entities
|
||
{
|
||
/// <summary>
|
||
/// 清洗数据
|
||
/// </summary>
|
||
[Table(Name = "ClearData")]
|
||
public class ClearData
|
||
{
|
||
/// <summary>
|
||
/// 主键ID
|
||
/// </summary>
|
||
[Column(IsPrimary = true, IsIdentity = true)]
|
||
public long Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// 设备码
|
||
/// </summary>
|
||
[Column(Name = "DeviceCode", StringLength = 100, IsNullable = true)]
|
||
public string? DeviceCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 设备名称
|
||
/// </summary>
|
||
[Column(Name = "DeviceName", StringLength = 100, IsNullable = true)]
|
||
public string? DeviceName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 程序进程
|
||
/// </summary>
|
||
[Column(Name = "program_process", StringLength = 100, IsNullable = true)]
|
||
public string? program_process { get; set; }
|
||
|
||
/// <summary>
|
||
/// 车型
|
||
/// </summary>
|
||
[Column(Name = "vehicle_model", StringLength = 100, IsNullable = true)]
|
||
public string? vehicle_model { get; set; }
|
||
|
||
/// <summary>
|
||
/// 下车号
|
||
/// </summary>
|
||
[Column(Name = "locomotive_number", StringLength = 100, IsNullable = true)]
|
||
public string? locomotive_number { get; set; }
|
||
|
||
/// <summary>
|
||
/// 修程
|
||
/// </summary>
|
||
[Column(Name = "repair_process", StringLength = 100, IsNullable = true)]
|
||
public string? repair_process { get; set; }
|
||
|
||
/// <summary>
|
||
/// 部件名称
|
||
/// </summary>
|
||
[Column(Name = "component_name", StringLength = 100, IsNullable = true)]
|
||
public string? component_name { get; set; }
|
||
|
||
/// <summary>
|
||
/// 位别
|
||
/// </summary>
|
||
[Column(Name = "part_position", StringLength = 100, IsNullable = true)]
|
||
public string? part_position { get; set; }
|
||
|
||
/// <summary>
|
||
/// 部件编号
|
||
/// </summary>
|
||
[Column(Name = "part_num", StringLength = 100, IsNullable = true)]
|
||
public string? part_num { get; set; }
|
||
|
||
/// <summary>
|
||
/// 部件二维码
|
||
/// </summary>
|
||
[Column(Name = "part_qrid", StringLength = 100, IsNullable = true)]
|
||
public string? part_qrid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 程序进程百分比
|
||
/// </summary>
|
||
[Column(Name = "Test_FrameworkProgramProcessPercentage", StringLength = 100, IsNullable = true)]
|
||
public string? Test_FrameworkProgramProcessPercentage { get; set; }
|
||
|
||
/// <summary>
|
||
/// 程序进程
|
||
/// </summary>
|
||
[Column(Name = "Test_FrameworkProgramProcess", StringLength = 100, IsNullable = true)]
|
||
public string? Test_FrameworkProgramProcess { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 构架单个机型清洗时长
|
||
/// </summary>
|
||
[Column(Name = "Test_FrameworkPerModelCleaningDuration", StringLength = 100, IsNullable = true)]
|
||
public string? Test_FrameworkPerModelCleaningDuration { get; set; }
|
||
|
||
/// <summary>
|
||
/// 构架单个机型用清洗剂量
|
||
/// </summary>
|
||
[Column(Name = "Test_FrameworkPerModelCleaningAgentUsage", StringLength = 100, IsNullable = true)]
|
||
public string? Test_FrameworkPerModelCleaningAgentUsage { get; set; }
|
||
|
||
/// <summary>
|
||
/// 构架单个机型用水量
|
||
/// </summary>
|
||
[Column(Name = "Test_FrameworkPerModelWaterUsage", StringLength = 100, IsNullable = true)]
|
||
public string? Test_FrameworkPerModelWaterUsage { get; set; }
|
||
|
||
/// <summary>
|
||
/// 水罐温度
|
||
/// </summary>
|
||
[Column(Name = "WaterTank_Temp", StringLength = 100, IsNullable = true)]
|
||
public string? WaterTank_Temp { get; set; }
|
||
|
||
/// <summary>
|
||
/// 清洗剂罐温度
|
||
/// </summary>
|
||
[Column(Name = "AgentTank_Temp", StringLength = 100, IsNullable = true)]
|
||
public string? AgentTank_Temp { get; set; }
|
||
|
||
/// <summary>
|
||
/// 水罐液位
|
||
/// </summary>
|
||
[Column(Name = "WaterTank_Level", StringLength = 100, IsNullable = true)]
|
||
public string? WaterTank_Level { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 清洗剂罐液位
|
||
/// </summary>
|
||
[Column(Name = "AgentTank_Level", StringLength = 100, IsNullable = true)]
|
||
public string? AgentTank_Level { get; set; }
|
||
|
||
/// <summary>
|
||
/// 浸泡池1温度
|
||
/// </summary>
|
||
[Column(Name = "SoakingTank1_Temp", StringLength = 100, IsNullable = true)]
|
||
public string? SoakingTank1_Temp { get; set; }
|
||
|
||
/// <summary>
|
||
/// 浸泡池2温度
|
||
/// </summary>
|
||
[Column(Name = "SoakingTank2_Temp", StringLength = 100, IsNullable = true)]
|
||
public string? SoakingTank2_Temp { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 热水罐加热模式运行
|
||
/// </summary>
|
||
[Column(Name = "Test_WaterTankHeat", StringLength = 100, IsNullable = true)]
|
||
public string? Test_WaterTankHeat { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 热水罐补水模式运行
|
||
/// </summary>
|
||
[Column(Name = "Test_WaterTankAdd", StringLength = 100, IsNullable = true)]
|
||
public string? Test_WaterTankAdd { get; set; }
|
||
|
||
/// <summary>
|
||
/// 清洗剂罐加热模式运行
|
||
/// </summary>
|
||
[Column(Name = "Test_CleaningAgentTankHeat", StringLength = 100, IsNullable = true)]
|
||
public string? Test_CleaningAgentTankHeat { get; set; }
|
||
|
||
/// <summary>
|
||
/// 清洗剂罐补水模式运行
|
||
/// </summary>
|
||
[Column(Name = "Test_CleaningAgentTankAdd", StringLength = 100, IsNullable = true)]
|
||
public string? Test_CleaningAgentTankAdd { get; set; }
|
||
|
||
/// <summary>
|
||
/// 电能监控
|
||
/// </summary>
|
||
[Column(Name = "Test_ElectricSurveillance", StringLength = 100, IsNullable = true)]
|
||
public string? Test_ElectricSurveillance { get; set; }
|
||
|
||
/// <summary>
|
||
/// 蒸汽监控
|
||
/// </summary>
|
||
[Column(Name = "Test_SteamSurveillance", StringLength = 100, IsNullable = true)]
|
||
public string? Test_SteamSurveillance { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// </summary>
|
||
[Column(ServerTime = DateTimeKind.Local, CanUpdate = false)]
|
||
public DateTime CreateTime { get; set; }
|
||
}
|
||
}
|