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

18 lines
576 B
C#
Raw Permalink 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>
/// 取消任务接口
///1. 如运单尚未执⾏取放货操作则RCS直接取消运单
///2. 如运单已执⾏取放货操作,则⾸先需要⼈⼯清空⻋上储位,然后取消
///3. 取消运单后未放货完成的料箱RCS会逐箱上报WMS已取消
/// </summary>
public class CancelOrder
{
private int _taskid;
/// <summary>
/// 任务id
/// </summary>
public int taskid { get => _taskid; set => _taskid = value; }
}
}