新增 scene.signal 信号交互插件,落地 PLC 握手与扫车放行。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
ykkokluo
2026-08-14 14:43:11 +08:00
co-authored by Cursor
parent 1e780c2b65
commit 12c7c1d518
29 changed files with 2425 additions and 1 deletions
@@ -0,0 +1,20 @@
using System.ComponentModel;
namespace StandardScene.Signal.Model
{
/// <summary>
/// 握手点配置。对应老地图点上的 <c>SignalStop</c>SignalType + SignalParams)。
/// 站点 fields 若已填写同名键,优先用站点字段。
/// </summary>
public class HandshakePointModel
{
[DisplayName("站点")]
public int Sit { get; set; }
[DisplayName("信号类型")]
public string SignalType { get; set; } = "JGControl";
[DisplayName("信号参数")]
public string SignalParams { get; set; } = "";
}
}