添加项目文件。

This commit is contained in:
2025-09-15 17:59:48 +08:00
parent 872f090cc2
commit e7adae128e
91 changed files with 14260 additions and 0 deletions

View File

@@ -0,0 +1,84 @@
namespace MoviconWebApi.API.ClearStaticApi
{
/// <summary>
/// 清洗统计请求模型
/// </summary>
public class ClearStaticRequest
{
/// <summary>
/// 设备编号
/// </summary>
public string? DeviceCode { get; set; }
}
/// <summary>
/// 清洗统计响应模型
/// </summary>
public class ClearStaticResponse
{
/// <summary>
/// 累计作业数量
/// </summary>
public int TotalJobCount { get; set; }
/// <summary>
/// 本年度作业数
/// </summary>
public int YearJobCount { get; set; }
/// <summary>
/// 本月作业数
/// </summary>
public int MonthJobCount { get; set; }
/// <summary>
/// 今日作业数
/// </summary>
public int TodayJobCount { get; set; }
/// <summary>
/// 累计作业时长(时)
/// </summary>
public decimal TotalJobHours { get; set; }
/// <summary>
/// 本年作业时长(时)
/// </summary>
public decimal YearJobHours { get; set; }
/// <summary>
/// 本月作业时长(时)
/// </summary>
public decimal MonthJobHours { get; set; }
/// <summary>
/// 今日作业时长(时)
/// </summary>
public decimal TodayJobHours { get; set; }
/// <summary>
/// 当前机型
/// </summary>
public string? CurrentVehicleModel { get; set; }
/// <summary>
/// 当前车号
/// </summary>
public string? CurrentLocomotiveNumber { get; set; }
/// <summary>
/// 当前修程
/// </summary>
public string? CurrentRepairProcess { get; set; }
/// <summary>
/// 车轮编号
/// </summary>
public string? CurrentWheelNumber { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public string? UpdateTime { get; set; }
}
}