using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO { /// /// 更新凯乐士任务优先级 /// public class UpdateGALAXISTaskGrade { /// /// 任务编号 /// public string taskId { get; set; } /// /// 请求时间戳 /// public string reportTime { get; set; } /// /// 任务库区 /// public string district { get; set; } = "cy"; /// /// 新的优先级 /// public int priorityCode { get; set; } } }