using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AntfortuneContentCommunityOpenSecuaiQueryModel Data Structure. /// [Serializable] public class AntfortuneContentCommunityOpenSecuaiQueryModel : AopObject { /// /// 业务的请求参数 /// [XmlElement("biz_request")] public string BizRequest { get; set; } /// /// 请求的业务类型 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 租户ID /// [XmlElement("tenant_id")] public string TenantId { get; set; } } }