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 _traceBackUrl = new StringConfigRef("");
|
|
|
|
[LogicName("追溯服务器地址")]
|
|
[ConfigurationItemGroup("MES系统")]
|
|
[ConfigurationItemDescription("追溯服务器地址 用于上传追溯信息")]
|
|
public StringConfigRef TraceBackUrl
|
|
{
|
|
get { return _traceBackUrl; }
|
|
set { _traceBackUrl = value; }
|
|
}
|
|
|
|
private StringConfigRef _productBatchRole = new StringConfigRef("");
|
|
|
|
[LogicName("自动生成批次模板")]
|
|
[ConfigurationItemGroup("MES系统")]
|
|
[ConfigurationItemDescription("自动生成批次 日期追加部分用英文半角逗号分开")]
|
|
public StringConfigRef ProductBatchRole
|
|
{
|
|
get { return _productBatchRole; }
|
|
set { _productBatchRole = value; }
|
|
}
|
|
}
|
|
}
|