using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Core.Const
{
///
/// 分类常量
///
public class CateGoryConst
{
///
/// 邮箱基础
///
public const string CONFIG_SYS_BaseExmail = "Sys_BaseExmail";
///
/// 邮箱配置
///
public const string CONFIG_SYS_RegExmail = "Sys_RegExmail";
///
/// IP接口地址
///
public const string CONFIG_SYS_IPAddress = "SYS_IPAddress";
///
/// MOM接口地址
///
public const string SYS_MOMIPAddress = "SYS_MOMIPAddress";
///
/// 特殊入库分配
///
public const string CONFIG_SYS_InStacker = "SYS_InStacker";
}
///
/// 配置Key常量
///
public class SysConfigConst
{
///
/// 邮箱SMTP地址
///
public const string SMTP_Server = "smtpServer";
///
/// 邮箱SMTP端口
///
public const string SMTP_Port = "smtpPort";
///
/// 邮箱SMTP账号
///
public const string SMTP_User = "smtpUser";
///
/// 邮箱SMTP密码
///
public const string SMTP_Pass = "smtpPass";
///
/// 邮箱标题
///
public const string SMTP_Title = "smtpTitle";
///
/// 邮箱内容标题
///
public const string SMTP_ContentTitle = "smtpContentTitle";
///
/// 邮箱内容标题
///
public const string SMTP_RegUser = "smtpRegUser";
///
/// WCS IP
///
public const string WCSIPAddress = "WCSIPAddress";
///
/// HK IP
///
public const string HKIPAddress = "HKIPAddress";
///
/// MOMIP地址
///
public const string MOMBaseIP = "MOMBaseIP";
///
/// 单电芯属性获取
///
public const string CellState = "CellState";
///
/// 整盘电芯属性获取
///
public const string TrayCellsStatus = "TrayCellsStatus";
///
/// 静置\陈化入库(整托盘)
///
public const string AgingInput = "AgingInput";
///
/// 静置\陈化出库(整托盘)
///
public const string AgingOutput = "AgingOutput";
///
/// 工艺路线申请
///
public const string ProcessApply = "ProcessApply";
///
/// 托盘单电芯解绑
///
public const string TrayCellUnbind = "TrayCellUnbind";
///
/// 整盘电芯解绑
///
public const string TrayUnbind = "TrayUnbind";
///
/// 请求WCS任务
///
public const string ReceiveByWMSTask = "ReceiveByWMSTask";
///
/// 请求WCS任务
///
public const string ReceiveTask = "ReceiveTask";
///
/// 请求WCS任务
///
public const string GetStation = "GetStation";
///
/// 是否入库空托盘
///
public const string InboundIsEmpty = "InboundIsEmpty";
}
}