using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniMorphoTemplatelistBatchqueryModel Data Structure. /// [Serializable] public class AlipayOpenMiniMorphoTemplatelistBatchqueryModel : AopObject { /// /// 闪蝶身份验证信息 /// [XmlElement("identity")] public MorphoIdentity Identity { get; set; } /// /// 关键字 /// [XmlElement("keyword")] public string Keyword { get; set; } /// /// 分页页码 /// [XmlElement("page_num")] public long PageNum { get; set; } /// /// 分页大小 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 模板类型 /// [XmlElement("type")] public string Type { get; set; } } }