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"; /// /// MESIP /// public const string CONFIG_SYS_MESIPAddress = "SYS_MESIPAddress"; } /// /// 配置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"; /// /// MES IP /// public const string MESIPAddress = "MESIPAddress"; // /// AGV IP /// public const string AGVIPAddress = "AGVIPAddress"; /// /// 下发AGV任务 /// public const string addTask = "addTask"; /// /// 车身过点 /// public const string PassPoint = "PassPoint"; /// /// WCS接收任务 /// public const string ReceiveTask = "ReceiveTask"; /// /// BDC工单绑定请求 /// public const string bindWorkOrder = "bindWorkOrder"; /// /// 车身特征信息 /// public const string IssuedCharacter = "IssuedCharacter"; } }