This commit is contained in:
backuppc
2025-07-14 16:32:56 +09:00
parent fb8c488890
commit 4a45ae15d6
20 changed files with 663 additions and 153 deletions

View File

@@ -5,15 +5,16 @@ namespace AGVControl
{
public class AGVActionPrediction
{
public Direction Direction { get; set; }
public AgvDir Direction { get; set; }
public RFIDPoint NextRFID { get; set; }
public string Reason { get; set; }
public AGVActionReasonCode ReasonCode { get; set; }
public AGVMoveState MoveState { get; set; } // RUN 또는 STOP
public AgvSpeed? MoveSpeed { get; set; }
public AgvRunDirection? MoveDiv { get; set; }
public AgvSts? MoveDiv { get; set; }
public UInt32 Idx { get; set; }
public bool Changed { get; set; }
public DateTime CreateTime { get; set; }
// override object.Equals
public bool Equals(AGVActionPrediction obj)