using System; using System.Collections.Generic; using System.Text; namespace AlibabaSDK.Response { public class ResultBaseResponse { /// /// 错误码 /// public string errorCode { get; set; } /// /// 错误描述 /// public string errorInfo { get; set; } /// /// 是否提交成功 /// public bool success { get; set; } } }