namespace Blog.Core.Common.Static { public static class StaticPayInfo { /// /// 商户号 /// public readonly static string MERCHANTID = AppSettings.app(new string[] { "PayInfo", "MERCHANTID" }).ObjToString(); /// /// 柜台号 /// public readonly static string POSID = AppSettings.app(new string[] { "PayInfo", "POSID" }).ObjToString(); /// /// 分行号 /// public readonly static string BRANCHID = AppSettings.app(new string[] { "PayInfo", "BRANCHID" }).ObjToString(); /// /// 公钥 /// public readonly static string pubKey = AppSettings.app(new string[] { "PayInfo", "pubKey" }).ObjToString(); /// /// 操作员号 /// public readonly static string USER_ID = AppSettings.app(new string[] { "PayInfo", "USER_ID" }).ObjToString(); /// /// 密码 /// public readonly static string PASSWORD = AppSettings.app(new string[] { "PayInfo", "PASSWORD" }).ObjToString(); /// /// 外联平台通讯地址 /// public readonly static string OutAddress = AppSettings.app(new string[] { "PayInfo", "OutAddress" }).ObjToString(); } }