using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AntMerchantExpandScodeModifyModel Data Structure. /// [Serializable] public class AntMerchantExpandScodeModifyModel : AopObject { /// /// 批量申请修改吗接口 /// [XmlArray("update_code_request")] [XmlArrayItem("update_code_request")] public List UpdateCodeRequest { get; set; } } }