using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniMultiAuditModifyModel Data Structure. /// [Serializable] public class AlipayOpenMiniMultiAuditModifyModel : AopObject { /// /// 审核备注 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 处理动作agree/reject /// [XmlElement("operate_result")] public string OperateResult { get; set; } /// /// 操作类型,高德固定填写AMAP_AUDIT_CALL_BACK /// [XmlElement("operate_type")] public string OperateType { get; set; } /// /// 工单id /// [XmlElement("task_id")] public string TaskId { get; set; } } }