using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.RGV.FOURBOT { public class CancelSXCTake { /// /// 任务号 /// public int taskID { get; set; } /// /// 取消原因 /// public string reason { get; set; }= ""; /// /// 0 默认取消;1 强制取消 /// public int force { get; set; } = 0; /// /// 0默认取消,1已经开始执行,则不取消 /// public int withoutRunning { get; set; } = 0; } }