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

165 lines
4.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Entity
{
/// <summary>
/// 实体类RT_Parameter
/// </summary>
[Serializable]
public class RT_Parameter
{
#region 私有字段
private string _equip_Code;
private int? _bin_Serial;
private int? _setWeight;
private int? _highSpeed;
private int? _middleSpeed;
private int? _lowSpeed;
private int? _high2Mid_Value;
private int? _mid2Low_Value;
private int? _preCloseDoor_Value;
private int? _big_MaxSpeed;
private int? _big_MinSpeed;
private int? _big_Delay;
private int? _big_Gain;
private int? _big_F;
private int? _small_MaxSpeed;
private int? _small_MinSpeed;
private int? _small_Delay;
private int? _small_Gain;
private int? _small_F;
private int? _lowSpeedLowLimit;
private int? _arch_breaking;
#endregion
#region 公有属性
public string Equip_Code
{
set { this._equip_Code = value; }
get { return this._equip_Code; }
}
public int? Bin_Serial
{
set { this._bin_Serial = value; }
get { return this._bin_Serial; }
}
public int? SetWeight
{
set { this._setWeight = value; }
get { return this._setWeight; }
}
public int? High_Speed
{
set { this._highSpeed = value; }
get { return this._highSpeed; }
}
public int? Middle_Speed
{
set { this._middleSpeed = value; }
get { return this._middleSpeed; }
}
public int? Low_Speed
{
set { this._lowSpeed = value; }
get { return this._lowSpeed; }
}
public int? High2Mid_Value
{
set { this._high2Mid_Value = value; }
get { return this._high2Mid_Value; }
}
public int? Mid2Low_Value
{
set { this._mid2Low_Value = value; }
get { return this._mid2Low_Value; }
}
public int? PreCLoseDoor_Value
{
set { this._preCloseDoor_Value = value; }
get { return this._preCloseDoor_Value; }
}
public int? Big_MaxSpeed
{
set { this._big_MaxSpeed = value; }
get { return this._big_MaxSpeed; }
}
public int? Big_MinSpeed
{
set { this._big_MinSpeed = value; }
get { return this._big_MinSpeed; }
}
public int? Big_Delay
{
set { this._big_Delay = value; }
get { return this._big_Delay; }
}
public int? Big_Gain
{
set { this._big_Gain = value; }
get { return this._big_Gain; }
}
public int? Big_F
{
set { this._big_F = value; }
get { return this._big_F; }
}
public int? Small_MaxSpeed
{
set { this._small_MaxSpeed = value; }
get { return this._small_MaxSpeed; }
}
public int? Small_MinSpeed
{
set { this._small_MinSpeed = value; }
get { return this._small_MinSpeed; }
}
public int? Small_Delay
{
set { this._small_Delay = value; }
get { return this._small_Delay; }
}
public int? Small_Gain
{
set { this._small_Gain = value; }
get { return this._small_Gain; }
}
public int? Small_F
{
set { this._small_F = value; }
get { return this._small_F; }
}
public int? LowSpeedLowerlimit
{
set { this._lowSpeedLowLimit = value; }
get { return this._lowSpeedLowLimit; }
}
public int? Arch_Breaking
{
set { this._arch_breaking = value; }
get { return this._arch_breaking; }
}
#endregion
}
}