AHTC/RGD/RGD.ZhiQianAPI/ZhiQianModel/BoxStatus.cs
2025-05-19 09:22:33 +08:00

33 lines
959 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace RGD.ZhiQianAPI.ZhiQianModel
{
/// <summary>
/// 任务执行状态上报
/// </summary>
public class BoxStatus
{
private string _caller;
private int _taskid;
private string _status;
private string _message;
/// <summary>
/// 上报方,默认agv
/// </summary>
public string caller { get => _caller; set => _caller = value; }
/// <summary>
/// 任务id
/// </summary>
public int taskId { get => _taskid; set => _taskid = value; }
/// <summary>
/// 任务状态EXECUTING-执⾏中COMPLETE-已完成CANCEL-已取晓
/// </summary>
public string status { get => _status; set => _status = value; }
/// <summary>
/// 当status==CANCEL时表⽰取消执⾏的原因
/// </summary>
public string message { get => _message; set => _message = value; }
}
}