using Newtonsoft.Json; namespace MoviconWebApi.API.ClearDataApi { public class ClearDataRequest { /// /// 设备编号 /// public string? DeviceCode { get; set; } /// /// 开始时间 /// public string? StartTime { get; set; } /// /// 结束时间 /// public string? EndTime { get; set; } /// /// 当前页码(从1开始) /// public int PageNo { get; set; } = 1; /// /// 分页大小 /// 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; } } }