using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO { /// /// 返回凯乐士结果信息 /// public class ReturnGALAXIS { /// /// 请求结果,0成功,1失败 /// public int returnStatus { get; set; } /// /// 请求异常结果描述 /// public string returnInfo { get; set; } /// /// 请求时间戳 /// public string msgTime { get; set; } } }