NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMerchantKbdeviceDevic...

25 lines
694 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>
/// KoubeiMerchantKbdeviceDevicesBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMerchantKbdeviceDevicesBatchqueryModel : AopObject
{
/// <summary>
/// 需要筛选的设备类型。目前只支持取餐柜FOOD_DISPENSER类型的设备查询必须填写FOOD_DISPENSER
/// </summary>
[XmlElement("device_type")]
public string DeviceType { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}