1.初版差异提交

This commit is contained in:
龚记林
2026-08-19 17:02:08 +08:00
parent 6f8dae2d02
commit 92c0d2e8d5
24 changed files with 507 additions and 27 deletions
@@ -0,0 +1,23 @@
using System;
namespace AGVSystem.A17168
{
/// <summary>
/// 第三方交管路口占用模型
/// </summary>
public class TrafficModel
{
/// <summary>
/// 路口(交汇区)地标编号
/// </summary>
public string areaCode { get; set; }
/// <summary>
/// 当前占用该路口的AGV编号,0=空闲
/// </summary>
public int agvId { get; set; }
/// <summary>
/// 进入路口时间
/// </summary>
public DateTime InArea { get; set; }
}
}