using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOpenAppCommunityDataSyncModel Data Structure. /// [Serializable] public class AlipayOpenAppCommunityDataSyncModel : AopObject { /// /// 操作类型.PUT:新增或覆盖,REMOVE:删除 /// [XmlElement("action")] public string Action { get; set; } /// /// 上传数据批次号 /// [XmlElement("batch_no")] public string BatchNo { get; set; } /// /// 用于标识数据所属数据类目 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 上传数据列表 /// [XmlArray("data_list")] [XmlArrayItem("biz_data")] public List DataList { get; set; } /// /// 社区素材内容数据类型 /// [XmlElement("type")] public string Type { get; set; } } }