using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO { /// /// 凯乐士返回结果 /// public class GALAXISReturn { /// /// 返回码 /// public int code { get; set; } /// /// 返回时间戳 /// public string reportTime { get; set; } public bool success { get; set; } public GALAXISReturnData data { get; set; } } public class GALAXISReturnData { /// /// 多任务组 /// public string groupId { get; set; } /// /// 任务编号 /// public string taskId { get; set; } /// /// 请求结果,0成功,1失败 /// public int returnStatus { get; set; } /// /// 请求异常结果描述 /// public string returnInfo { get; set; } } }