using System;
using System.Collections.Generic;
using System.Text;
namespace DllEapEntity.OFILM
{
public class RunRateDto
{
public string Name { get; set; }
public string Code { get; set; }
public double Value { get; set; }
public RgbColor Color { get; set; }
}
public class RunTime
{
public string ProcessCode { get; set; }
public int TimeLen { get; set; }
}
///
/// 单个机台的稼动率实体
///
public class MacRunRateDto
{
///
/// 机台编号
///
public string MacCode { get; set; }
///
/// 制程
///
public string ProcessCode { get; set; }
///
/// 稼动率
///
public double RunRate { get; set; }
}
}