mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
29 lines
532 B
C#
29 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Net462DllTest.Enums
|
|
{
|
|
public enum PlcState
|
|
{
|
|
/// <summary>
|
|
/// 关机
|
|
/// </summary>
|
|
PowerOff,
|
|
/// <summary>
|
|
/// 正在运行
|
|
/// </summary>
|
|
Runing,
|
|
/// <summary>
|
|
/// 发生异常
|
|
/// </summary>
|
|
Error,
|
|
/// <summary>
|
|
/// 维护中
|
|
/// </summary>
|
|
Maintenance,
|
|
}
|
|
}
|