init commit

This commit is contained in:
zhaowei.huang
2026-06-14 11:19:15 +08:00
parent e79a3815a5
commit c8e540d272
174 changed files with 60830 additions and 39 deletions
+48
View File
@@ -0,0 +1,48 @@
using System;
namespace StandardScene.Model
{
public class MissionState
{
public string MissionId { get; set; }
public string CarCode {get; set; }
public DateTime TriggerTime { get; set; }
public enum MissionStateEnum
{
/// <summary>
/// 创建任务。
/// </summary>
Created = 1,
/// <summary>
/// 子任务启动。
/// </summary>
Started = 2,
/// <summary>
/// 子任务完成。
/// </summary>
Finished = 3,
/// <summary>
/// 子任务失败。
/// </summary>
Failed = 4,
/// <summary>
/// 子任务的取货完成,发生在Started之后。
/// </summary>
Fetched = 5,
/// <summary>
/// 子任务的放货完成,发生在Started之后。
/// </summary>
Put = 6
}
public MissionStateEnum State { get; set; }
}
}