NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniMultiAuditMod...

37 lines
920 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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