using BWP.B3Frameworks.Attributes;
|
|
using Forks.EnterpriseServices;
|
|
using Forks.Utils.Configuration;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TSingSoft.WebPluginFramework;
|
|
|
|
namespace BWP.B3QingDaoWanFu.Utils
|
|
{
|
|
[ConfigurationEnabled]
|
|
public class WanFuOnlineConfig
|
|
{
|
|
public WanFuOnlineConfig()
|
|
{
|
|
ConfigurationUtil.Fill(this);
|
|
}
|
|
|
|
|
|
private IntConfigRef _receiptTypeID = new IntConfigRef(0);
|
|
|
|
[LogicName("农行接口收款类型ID")]
|
|
[ConfigurationItemGroup("青岛万福")]
|
|
[ConfigurationItemDescription("农行接口收款类型ID配置")]
|
|
[DomainConfigurationItem]
|
|
public IntConfigRef ReceiptTypeID
|
|
{
|
|
get { return _receiptTypeID; }
|
|
set { _receiptTypeID = value; }
|
|
}
|
|
|
|
|
|
private IntConfigRef _gatheringAccountID = new IntConfigRef(0);
|
|
|
|
[LogicName("农行接口帐户ID")]
|
|
[ConfigurationItemGroup("青岛万福")]
|
|
[ConfigurationItemDescription("农行接口帐户ID配置")]
|
|
[DomainConfigurationItem]
|
|
public IntConfigRef GatheringAccountID
|
|
{
|
|
get { return _gatheringAccountID; }
|
|
set { _gatheringAccountID = value; }
|
|
}
|
|
|
|
private IntConfigRef _accID = new IntConfigRef(0);
|
|
|
|
[LogicName("农行接口会计单位ID")]
|
|
[ConfigurationItemGroup("青岛万福")]
|
|
[ConfigurationItemDescription("农行接口会计单位ID配置")]
|
|
[DomainConfigurationItem]
|
|
public IntConfigRef AccID
|
|
{
|
|
get { return _accID; }
|
|
set { _accID = value; }
|
|
}
|
|
|
|
}
|
|
}
|