using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoContractProcessSyncModel Data Structure. /// [Serializable] public class AlipayEcoContractProcessSyncModel : AopObject { /// /// MCCCode /// [XmlElement("batch_no")] public string BatchNo { get; set; } /// /// 流程信息 /// [XmlArray("flows")] [XmlArrayItem("contract_manager_process_sync_request")] public List Flows { get; set; } /// /// 签署平台的代码 /// [XmlElement("sign_platform_code")] public string SignPlatformCode { get; set; } } }