using System; using System.Collections.Generic; using System.Text; namespace SlnMesnac.Model.AirportApiEntity { /// /// 取消/终止任务请求实体类 /// public class AGVRequestOperationalTaskEntity { /// /// 任务ID /// public string taskid { get; set; } /// /// 状态:0:终止 4:取消 /// public int state { get; set; } /// /// 操作源 /// public string operatingSource { get; set; } /// /// 操作用户 /// public string operatingUser { get; set; } /// /// 操作说明 /// public string remark { get; set; } } }