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