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.
40 lines
775 B
40 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
|
|
}
|
|
}
|
|
|