30 lines
532 B
C#
30 lines
532 B
C#
namespace WX.CRM.Common.WxPay
|
|
{
|
|
/**
|
|
* 配置账号信息
|
|
*/
|
|
public class Config
|
|
{
|
|
|
|
private static volatile IConfig config;
|
|
private static object syncRoot = new object();
|
|
|
|
public static IConfig GetConfig()
|
|
{
|
|
if (config == null)
|
|
{
|
|
lock (syncRoot)
|
|
{
|
|
if (config == null)
|
|
config = new WxPayConfig();
|
|
}
|
|
}
|
|
return config;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
} |