using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SiaSun.LMS.EnumMessage
{
///
/// 系统类信息提示
/// 1-50
///
public enum SYSTEM_MESSAGE
{
///
/// {0}
///
SystemException = 1
}
///
/// 成功类信息提示
/// 51-100
///
public enum SUCCESS_MESSAGE
{
///
/// 操作成功
///
OperationSuccess = 51
}
///
/// 容器类信息提示
/// 101-200
///
public enum CONTAINER_MESSAGE
{
///
/// 容器[{0}]已经存在任务[{1}]
///
TaskExist = 101,
///
/// 容器[{0}]不存在库存
///
StorageNotExist=102
}
///
/// 货位站台类信息提示
/// 201-300
///
public enum CELL_MESSAGE
{
///
/// 起始位置索引[{0}]不存在
///
StartCellIDNotExist = 201,
///
/// 终止位置索引[{0}]不存在
///
EndCellIDNotExist = 202,
///
/// 货位索引[{0}]不存在
///
CellIDNotExist = 203,
///
/// 起始位置[{0}]类型不合法
///
StartCellTypeInvalid = 204,
///
/// 起始位置[{0}]库区类型[{1}]不合法
///
StartCellAreaTypeInvalid = 205,
///
/// 终止位置[{0}]不存在
///
EndCellCodeNotExist = 206,
///
/// 终止位置[{0}]类型不合法
///
EndCellTypeInvalid = 207,
///
/// 终止位置[{0}]入出类型[{1}]不合法
///
EndCellInoutInvalid = 208
}
///
/// 任务路径类信息提示
/// 301-400
///
public enum ROUTE_MESSAGE
{
///
/// 起始位置[{0}]到终止位置[{1}]路径不可用
///
RouteUnavailable = 301
}
/// 管理任务类信息提示
/// 401-500
///
public enum MANAGE_MESSAGE
{
///
///{0}管理任务索引[{1}]不存在
///
ManageNotExist = 401,
///
///{0}管理任务索引[{1}]已存在
///
ManageExist = 402,
///
///{0}管理任务索引[{1}]已存在对应的控制任务
///
ControlExist = 403
}
/// 计划类信息提示
/// 501-600
///
public enum PLAN_MESSAGE
{
///
///计划单[{0}]已存在
///
PlanExist = 501,
///
/// 计划单[{0}]已生成入出库记录,不能编辑
///
RecordExist = 502,
///
///计划索引[{0}]不存在
///
PlanNotExist = 503,
///
///更新计划索引[{0}]状态失败
///
UpdatePlanStateFail = 504
}
/// 库存类信息提示
/// 601-700
///
public enum STORAGE_MESSAGE
{
///
///{0}库存索引[{1}]不存在
///
StorageNotExist = 601,
///
///{0}库存列表索引[{1}]不存在
///
StorageListNotExist = 602
}
/// 控制类信息提示
/// 701-800
///
public enum CONTROL_MESSAGE
{
///
///{0}控制任务索引[{1}]的控制任务未完成
///
ControlNotComplete = 701
}
/// LED类信息提示
/// 801-900
///
public enum LED_MESSAGE
{
///
///设备[{0}]对应大屏幕不存在
///
LEDNotExist = 801,
///
///请先添加LED_MAN信息
///
AddLEDMainFirst = 802,
///
///设备[{0}]对应大屏幕行数设置不合法
///
LEDLineNumInvalid = 803,
///
///设备[{0}]对应大屏幕行数不能设置为[{1}]
///
LEDLineNumXInvalid = 804,
///
///设备[{0}]对应大屏幕发送内容行数[{1}]与内容[{2}]格式不一致
///
SendTextLineCountAndFormatDiff = 805,
///
///设备[{0}]对应大屏幕重新生成LED_LIST失败
///
CreateLEDListFail = 806,
///
///设备[{0}]对应大屏幕不存在第[{1}]行,请重新生成LED_LIST
///
LineNumXNotExist = 807
}
///
/// 消息提示类型
/// 5001-6000
///
public enum PLEASE_MESSAGE
{
///
///请选择下架站台
///
SelectEndStation =5001,
///
///请选择要操作的记录
///
SelectOperationRecord = 5002
}
}