using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoCplifeResidentinfoDeleteModel Data Structure. /// [Serializable] public class AlipayEcoCplifeResidentinfoDeleteModel : AopObject { /// /// 待删除的住户所在的小区ID(支付宝平台统一小区ID标识) /// [XmlElement("community_id")] public string CommunityId { get; set; } /// /// 待删除住户在物业系统中的唯一标示,一次至多传入200条用户ID /// [XmlArray("out_resident_id_set")] [XmlArrayItem("string")] public List OutResidentIdSet { get; set; } } }