using HH.AMS.Entitys.Common; /*------------------------------------------------------------------ -- COPYRIGHT (C) 2011-2020 hanhe -- ALL RIGHTS RESERVED. -- han he -- CREATE DATE: 2014/06/11 -- CREATE MAN: 姜新军 -- 常量类 -- MODIFY HISTORY: -- MODIFY DATE: -- MODIFY MAN: -- MODIFY DESC: -- MODIFY DATE: -- MODIFY MAN: -- MODIFY DESC: ---------------------------------------------------------------------*/ using System; using System.Collections.Generic; namespace HH.AMS.Common { /// /// 放置常数 /// public class Constants { public static List InfDataFormat; /// /// 是:Y 否:N /// public static readonly string Y = "Y"; /// /// 是:Y 否:N /// public static readonly string N = "N"; /// /// 重置初始密码 /// public static readonly string INIT_PASSWORD = "123456"; /// /// 设置当前系统应用ID /// public static readonly string appCode = System.Configuration.ConfigurationManager.AppSettings["appCode"].ToString(); /// /// 用户信息存储到redis Hash表中的实体名称 /// public static readonly string user_HashId = "userEntity"; public static int AlarmCycTime; /// /// 上游系统提供的api地址的请求类型 POST,GET /// public static string UpSysReqType; /// /// 上游系统提供的api地址,用于接收ams系统反馈的任务状态 /// public static string UpSysAddress; /// /// AUTOWMS项目编码 /// public static string AutoWMSProjectCode; /// /// 是否启动Autobom集团级版本 /// public static string isAutobomGroup; /// /// 登录账号机构标识代码 /// public static string orgFlagCode; } }