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

48 lines
1.1 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>
/// AlipayOfflineProviderEquipmentAuthRemoveModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOfflineProviderEquipmentAuthRemoveModel : AopObject
{
/// <summary>
/// 机具编号
/// </summary>
[JsonProperty("device_id")]
public string DeviceId { get; set; }
/// <summary>
/// 机具类型
/// </summary>
[JsonProperty("device_type")]
public string DeviceType { get; set; }
/// <summary>
/// 扩展信息传json格式的字符串包含auth_alipay_card_no =授权的商户支付宝卡号
/// </summary>
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 机具厂商PID
/// </summary>
[JsonProperty("merchant_pid")]
public string MerchantPid { get; set; }
/// <summary>
/// 操作人名称
/// </summary>
[JsonProperty("operator")]
public string Operator { get; set; }
/// <summary>
/// 操作人ID
/// </summary>
[JsonProperty("operator_id")]
public string OperatorId { get; set; }
}
}