You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

32 lines
802 B

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; }
}
}
}