using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniAppdeployByappidQueryModel Data Structure. /// [Serializable] public class AlipayOpenMiniAppdeployByappidQueryModel : AopObject { /// /// 端标识 /// [XmlElement("bundle_id")] public string BundleId { get; set; } /// /// 租户标识 /// [XmlElement("inst_code")] public string InstCode { get; set; } /// /// 小程序应用ID /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 当前页,从1开始 /// [XmlElement("page_num")] public long PageNum { get; set; } /// /// 每页个数 /// [XmlElement("page_size")] public long PageSize { get; set; } } }