EquipmentStatusRecordEntity.cs
561 Bytes
using System;
using System.Collections.Generic;
using System.Text;
namespace Hh.Mes.POJO.ApiEntity
{
public class EquipmentStatusRecordEntity
{
public string ProjectCode { get; set; }
public string EquipmentCode { get; set; }
public string EquipmentName { get; set; }
public string CreateTime { get; set; }
public double RunningDuration { get; set; }
public double FreeDuration { get; set; }
public double ErrorDuration { get; set; }
public int ErrorCount { get; set; }
}
}