using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppIndustryApplyflowQueryModel Data Structure. /// [Serializable] public class AlipayEbppIndustryApplyflowQueryModel : AopObject { /// /// 支付宝办理流水号,支持幂等,和外部办理流水号之间必须传一个 /// [XmlElement("apply_flow_no")] public string ApplyFlowNo { get; set; } /// /// 拓展字段 /// [XmlElement("extend_field")] public string ExtendField { get; set; } /// /// 外部申请流水号,支持幂等,和支付宝办理流水号之间必须传一个 /// [XmlElement("out_apply_no")] public string OutApplyNo { get; set; } } }