EquipmentIndexEntity.cs
765 Bytes
using System;
using System.Collections.Generic;
using System.Text;
namespace Hh.Mes.POJO.ApiEntity
{
/// <summary>
/// 设备扩展指数
/// </summary>
public class EquipmentIndexEntity:EquipmentStatusRecordEntity
{
public string Date { get; set; }
/// <summary>
/// OEE设备综合效率
/// </summary>
public string Oee { get; set; } = "0%";
/// <summary>
/// MTTR
/// </summary>
public double Mttr { get; set; } = 0;
/// <summary>
/// MTBF
/// </summary>
public double Mtbf { get; set; } = 0;
/// <summary>
/// 妥善率
/// </summary>
public string Proper { get; set; } = "0%";
}
}