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.
32 lines
563 B
C#
32 lines
563 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaterialTraceability.Entity.Enum
|
|
{
|
|
public enum LogType
|
|
{
|
|
/// <summary>
|
|
/// 报警日志
|
|
/// </summary>
|
|
AlarmLog,
|
|
|
|
/// <summary>
|
|
/// Mes交互日志
|
|
/// </summary>
|
|
MesLog,
|
|
|
|
/// <summary>
|
|
/// PLC交互日志
|
|
/// </summary>
|
|
PlcLog,
|
|
|
|
/// <summary>
|
|
/// RFID读取日志
|
|
/// </summary>
|
|
RfidLog,
|
|
}
|
|
}
|