NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandIsvDeviceB...

55 lines
1.6 KiB
C#
Raw Permalink 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>
/// AntMerchantExpandIsvDeviceBindModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandIsvDeviceBindModel : AopObject
{
/// <summary>
/// 机具使用场景: 团餐CATERING_DEVICE 快消FMCG_DEVICE
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 设备编号。由各个供应商自己定义的设备标识,和供应商编号确定设备的唯一性
/// </summary>
[XmlElement("device_sn")]
public string DeviceSn { get; set; }
/// <summary>
/// 物料模板id每个物料模板对应的唯一标识由蚂蚁金服物料平台管理
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 备注
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 开放平台机具申请单号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 门店id。ISV为商家创建的门店对应的唯一标识
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 供应商编号。由蚂蚁金服为每个供应商分配的唯一标识
/// </summary>
[XmlElement("supplier_no")]
public string SupplierNo { get; set; }
}
}