duheng
2024-09-27 3b03ac9340fb8153fbb99c8e00702494192c00b6
WinFrmUI/HStation.WinFrmUI.Xhs.Core/04-simulation/06-simulation/01-matching/06-threelink/XhsProjectSimulationThreelinkMatchingViewModel.cs
@@ -29,6 +29,14 @@
            {
                MatchingType = eMatchingStatus.Succeed;
            }
            if (rhs.MatchingDbId == null || rhs.MatchingDbId == string.Empty)
            {
                MatchingSatus = eMatchingStatus.Failed;
            }
            else
            {
                MatchingSatus = eMatchingStatus.Succeed;
            }
        }
        /// <summary>
@@ -123,10 +131,17 @@
        public double? MatchingMinorLoss { get; set; }
        /// <summary>
        /// 匹配状态
        /// </summary>
        [DisplayName("匹配状态")]
        [Browsable(true)]
        public eMatchingStatus MatchingType { get; set; }
        /// <summary>
        /// 是否匹配成功
        /// </summary>
        [DisplayName("是否匹配成功")]
        [Browsable(true)]
        public eMatchingStatus MatchingType { get; set; }
        public eMatchingStatus MatchingSatus { get; set; }
    }
}