Commit a9a049ea authored by 潘栩锋's avatar 潘栩锋 🚴

1. 修复 为FLYAD7 的输出口,变频器正反转功能写反了

parent 335b82d9
......@@ -96,15 +96,15 @@ namespace FLY.Thick.Base.Common
#endregion
#region 输出口
/// <summary>
/// 变频器正转 VF0 是松下的变频器牌子
/// </summary>
[Description("变频器正转")]
public int OutNo_VF0_Forw { get; protected set; } = 1 - 1;
/// <summary>
/// 变频器反转 VF0 是松下的变频器牌子
/// </summary>
[Description("变频器反转")]
public int OutNo_VF0_Backw { get; protected set; } = 2 - 1;
public int OutNo_VF0_Backw { get; protected set; } = 1 - 1;
/// <summary>
/// 变频器正转 VF0 是松下的变频器牌子
/// </summary>
[Description("变频器正转")]
public int OutNo_VF0_Forw { get; protected set; } = 2 - 1;
/// <summary>
/// 变频器减速 VF0 是松下的变频器牌子
/// </summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment