using BWP.B3Frameworks.Attributes;
|
|
using Forks.EnterpriseServices;
|
|
using Forks.Utils.Configuration;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using TSingSoft.WebPluginFramework;
|
|
|
|
namespace BWP.B3SheepButcherManage.Utils
|
|
{
|
|
[ConfigurationEnabled]
|
|
public class B3SheepButcherManageConfig
|
|
{
|
|
public B3SheepButcherManageConfig()
|
|
{
|
|
ConfigurationUtil.Fill(this);
|
|
}
|
|
|
|
private DecimalConfigRef _subtractWeight = new DecimalConfigRef(0);
|
|
|
|
[DomainConfigurationItem]
|
|
[LogicName("屠宰扣重值")]
|
|
[ConfigurationItemGroup("羊屠宰场管理")]
|
|
[ConfigurationItemDescription("默认0")]
|
|
public DecimalConfigRef SubtractWeight
|
|
{
|
|
get { return _subtractWeight; }
|
|
set { _subtractWeight = value; }
|
|
}
|
|
}
|
|
}
|