天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
775 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QMAPP.WinForm.Forms.Andon.Enum
{
public class AndonEnum
{
public static string labCallTime = "呼叫时间 : ";
public static string labCallReason = "呼叫原因 : ";
public static string labWaitTime = "等待时间 : ";
public static string labAnswerTime = "应答时间 : ";
public static string labHandleTime = "处理时间 : ";
#region 枚举
/// <summary>
/// 消息类型
/// </summary>
public enum MessageType
{
= 1,
= 2,
= 4
}
#endregion
}
}