using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// EbppOrderItemToCreate Data Structure. /// [Serializable] public class EbppOrderItemToCreate : AopObject { /// /// 业务金额 /// [XmlElement("biz_amount")] public string BizAmount { get; set; } /// /// 业务产品id,由支付宝分配。 /// [XmlElement("biz_prod_id")] public string BizProdId { get; set; } /// /// 扩展字段 (缴税业务: taxpayerName - 纳税人名称, taxPayerCode - 纳税人识别号, taxOrgCode - 所属机关代码, outerLevyNo - 外部申报号/电子税票号码, ) /// [XmlElement("extend_field")] public string ExtendField { get; set; } /// /// 机构端对该子项所代表的这笔业务的唯一标识。 /// [XmlElement("inst_item_id")] public string InstItemId { get; set; } } }