27 lines
668 B
C#
27 lines
668 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// PreAmountInfoResult Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PreAmountInfoResult : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 前置费用明细列表
|
|
/// </summary>
|
|
[XmlArray("pre_amount_list")]
|
|
[XmlArrayItem("pre_amount_clause_result")]
|
|
public List<PreAmountClauseResult> PreAmountList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
[XmlElement("total_pre_mount")]
|
|
public string TotalPreMount { get; set; }
|
|
}
|
|
}
|