using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayDataIotdataSearchlibraryBaiQueryModel Data Structure. /// [Serializable] public class AlipayDataIotdataSearchlibraryBaiQueryModel : AopObject { /// /// 账户ID,账户粒度ID。 /// [XmlElement("account_id")] public string AccountId { get; set; } /// /// 产品id /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 商户ID,即平台用户ID /// [XmlElement("company_id")] public string CompanyId { get; set; } /// /// 内容ID /// [XmlElement("content_id")] public string ContentId { get; set; } /// /// 待检测内容的raw data,这期暂不使用 /// [XmlElement("entity_data")] public string EntityData { get; set; } /// /// 待检测字段的描述信息,包括标题、描述或关键词,json格式字符串 /// [XmlElement("entity_desc")] public string EntityDesc { get; set; } /// /// 内容hash值 /// [XmlElement("entity_hash")] public string EntityHash { get; set; } /// /// 待检测内容类型,[TEXT, PICTURE, VIDEO, HTML] /// [XmlElement("entity_type")] public string EntityType { get; set; } /// /// 待检测内容oss url(后续可以扩展为非oss的文件url) /// [XmlElement("entity_url")] public string EntityUrl { get; set; } /// /// 媒体内容向量化的结果。 /// [XmlElement("entity_vector")] public string EntityVector { get; set; } /// /// 扩展字段1 /// [XmlElement("ex_1")] public string Ex1 { get; set; } /// /// 扩展字段2 /// [XmlElement("ex_2")] public string Ex2 { get; set; } /// /// 扩展字段3 /// [XmlElement("ex_3")] public string Ex3 { get; set; } /// /// 扩展字段4 /// [XmlElement("ex_4")] public string Ex4 { get; set; } /// /// 扩展字段5 /// [XmlElement("ex_5")] public string Ex5 { get; set; } /// /// 时间戳 /// [XmlElement("time_stamp")] public string TimeStamp { get; set; } } }