using System;
using Newtonsoft.Json;
using System.Xml.Serialization;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
///
/// AlipayCommerceIotMdeviceprodAssetapplyQueryModel Data Structure.
///
[Serializable]
public class AlipayCommerceIotMdeviceprodAssetapplyQueryModel : AlipayObject
{
///
/// 物料平台的申请单ID
///
[JsonProperty("apply_order_id")]
[XmlElement("apply_order_id")]
public string ApplyOrderId { get; set; }
}
}