using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Forks.EnterpriseServices;
|
|
using Forks.Utils.Configuration;
|
|
using TSingSoft.WebPluginFramework;
|
|
|
|
namespace BWP.B3ClientService
|
|
{
|
|
[ConfigurationEnabled]
|
|
public class B3ClientServiceOnLineConfig
|
|
{
|
|
public B3ClientServiceOnLineConfig()
|
|
{
|
|
ConfigurationUtil.Fill(this);
|
|
}
|
|
|
|
//全局
|
|
private StringConfigRef _outNetUrl = new StringConfigRef("");
|
|
|
|
[LogicName("外网地址")]
|
|
[ConfigurationItemGroup("中间服务器")]
|
|
[ConfigurationItemDescription("追溯外网地址")]
|
|
public StringConfigRef OutNetUrl
|
|
{
|
|
get { return _outNetUrl; }
|
|
set { _outNetUrl = value; }
|
|
}
|
|
|
|
|
|
}
|
|
}
|