using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoCityservicePolymerSyncSendModel Data Structure. /// [Serializable] public class AlipayEcoCityservicePolymerSyncSendModel : AopObject { /// /// 描述实体变更类型,包含新增、删除、修改 /// [XmlElement("cud_type")] public string CudType { get; set; } /// /// 变更实体的详细内容,为json格式,根据entity_type的不同而具有不同的格式。 /// [XmlElement("entity_content")] public string EntityContent { get; set; } /// /// 该参数为变更实体类型,可能的变更实体包含: 城市、分类、服务、展台、角标、标签 /// [XmlElement("entity_type")] public string EntityType { get; set; } } }