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";
///
/// 参数名称
///
public const string CONFIG_SYS_Parameters = "SYS_Parameters";
public const string CONFIG_SYS_AGVIPAddress = "SYS_AGVIPAddress";
}
///
/// 配置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";
//
/// AGV IP
///
public const string AGVIPAddress = "AGVIPAddress";
public const string TempHour = "TempHour";
}
}