using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiMerchantKbdeviceDevicesBatchqueryModel Data Structure. /// [Serializable] public class KoubeiMerchantKbdeviceDevicesBatchqueryModel : AopObject { /// /// 需要筛选的设备类型。目前只支持取餐柜(FOOD_DISPENSER)类型的设备查询,必须填写FOOD_DISPENSER /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 门店ID /// [XmlElement("shop_id")] public string ShopId { get; set; } } }