using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiRhinoMosExecPerformContextAddResponse. /// public class OapiRhinoMosExecPerformContextAddResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 执行上下文 /// [XmlArray("model")] [XmlArrayItem("operation_perform_dto")] public List Model { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// OperationPerformDtoDomain Data Structure. /// [Serializable] public class OperationPerformDtoDomain : TopObject { /// /// 上下文 /// [XmlElement("context")] public string Context { get; set; } /// /// 工序执行ID /// [XmlElement("operation_record_id")] public long OperationRecordId { get; set; } } } }