DeviceManager/DeviceRepairAndOptimization/Models/Enum/enumMaintenanceFlag.cs
2024-05-28 22:36:38 +08:00

14 lines
322 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace DeviceRepairAndOptimization.Models.Enum
{
/// <summary>
/// 标记已保养打√不适用打N/A异常打△并写在异常处理拦无生产打/。
/// </summary>
public enum enumMaintenanceFlag
{
Processed,
NA,
Exception,
Unproduction
}
}