generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
593 B
C#
28 lines
593 B
C#
|
2 months ago
|
namespace Sln.Iot.Model.api.Common.PerformanceImpact
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 性能影响原因枚举
|
||
|
|
/// </summary>
|
||
|
|
public enum PerformanceImpactCause
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 供料器速度低
|
||
|
|
/// </summary>
|
||
|
|
LowFeederSpeed,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 使用替代轨道
|
||
|
|
/// </summary>
|
||
|
|
AlternativeTrackUsed,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 物料缺料
|
||
|
|
/// </summary>
|
||
|
|
MaterialShortage,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 设备维护
|
||
|
|
/// </summary>
|
||
|
|
EquipmentMaintenance
|
||
|
|
}
|
||
|
|
}
|