Files
2025-09-17 17:22:09 +08:00

72 lines
2.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Newtonsoft.Json;
namespace MoviconWebApi.API.ClearDataApi
{
public class ClearDataRequest
{
/// <summary>
/// 设备编号
/// </summary>
public string? DeviceCode { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public string? StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public string? EndTime { get; set; }
/// <summary>
/// 当前页码从1开始
/// </summary>
public int PageNo { get; set; } = 1;
/// <summary>
/// 分页大小
/// </summary>
public int PageSize { get; set; } = 100;
}
public class ClearDataResponse
{
public string? DeviceCode { get; set; }
public string? DeviceName { get; set; }
public string? program_process { get; set; }
public string? vehicle_model { get; set; }
public string? locomotive_number { get; set; }
public string? repair_process { get; set; }
public string? component_name { get; set; }
public string? part_position { get; set; }
public string? part_num { get; set; }
public string? part_qrid { get; set; }
public string? Test_FrameworkProgramProcessPercentage { get; set; }
public string? Test_FrameworkProgramProcess { get; set; }
public string? Test_FrameworkPerModelCleaningDuration { get; set; }
public string? Test_FrameworkPerModelCleaningAgentUsage { get; set; }
public string? Test_FrameworkPerModelWaterUsage { get; set; }
public string? WaterTank_Temp { get; set; }
public string? AgentTank_Temp { get; set; }
public string? WaterTank_Level { get; set; }
public string? AgentTank_Level { get; set; }
public string? SoakingTank1_Temp { get; set; }
public string? SoakingTank2_Temp { get; set; }
public string? Test_WaterTankHeat { get; set; }
public string? Test_WaterTankAdd { get; set; }
public string? Test_CleaningAgentTankHeat { get; set; }
public string? Test_CleaningAgentTankAdd { get; set; }
public string? Test_ElectricSurveillance { get; set; }
public string? Test_SteamSurveillance { get; set; }
[JsonIgnore]
public string? CreateTime { get; set; }
}
}