Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KbOrderVoucherModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

66 lines
1.6 KiB
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>
/// KbOrderVoucherModel Data Structure.
/// </summary>
[Serializable]
public class KbOrderVoucherModel : AopObject
{
/// <summary>
/// 商品凭证过期时间
/// </summary>
[JsonProperty("expire_date")]
public string ExpireDate { get; set; }
/// <summary>
/// 商品凭证核销/退款对应的资金流水号
/// </summary>
[JsonProperty("funds_voucher_no")]
public string FundsVoucherNo { get; set; }
/// <summary>
/// 商品ID
/// </summary>
[JsonProperty("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 退款理由,由消费者选择或填写内容,系统退款可以为空。
/// </summary>
[JsonProperty("refund_reason")]
public string RefundReason { get; set; }
/// <summary>
/// 退款类型ROLE_DAEMON超期未使用ROLE_USER消费者主动
/// </summary>
[JsonProperty("refund_type")]
public string RefundType { get; set; }
/// <summary>
/// 商品凭证核销门店ID,核销后会存在该字段
/// </summary>
[JsonProperty("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 状态
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
/// <summary>
/// 商品凭证核销门店外部ID
/// </summary>
[JsonProperty("store_id")]
public string StoreId { get; set; }
/// <summary>
/// 商品凭证ID
/// </summary>
[JsonProperty("voucher_id")]
public string VoucherId { get; set; }
}
}