using DllEapEntity.Dtos; using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.OFILM { /// /// 机台运行数据汇总传输实体 /// public class MacRunDataDto : AntdComplexData { /// /// 机型(即设备类型) /// public string MacModel { get; set; } /// /// 机台号 /// public string MacCode { get; set; } /// /// 产量 /// public double Output { get; set; } /// /// 稼动率 /// public double RunRate { get; set; } /// /// 闲置率 /// public double IdleRate { get; set; } /// /// 故障率 /// public double AlarmRate { get; set; } /// /// 故障次数 /// public int AlarmCount { get; set; } /// /// 故障总时长 /// public double AlarmTime { get; set; } } }