Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarMaintainAftersaleSyncModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
688 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarMaintainAftersaleSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarMaintainAftersaleSyncModel : AopObject
{
/// <summary>
/// 车主平台售后编号
/// </summary>
[JsonProperty("aftersale_no")]
public string AftersaleNo { get; set; }
/// <summary>
/// 客服拒绝退款原因描述
/// </summary>
[JsonProperty("refuse_reason")]
public string RefuseReason { get; set; }
/// <summary>
/// 1受理 2拒绝
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}