NewGaoKaoApi/PaymentSDK/AliPay/Domain/ContractInfoVO.cs

51 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// ContractInfoVO Data Structure.
/// </summary>
[Serializable]
public class ContractInfoVO : AopObject
{
/// <summary>
/// 审批列表
/// </summary>
[XmlArray("approval_infos")]
[XmlArrayItem("contract_approval_info_v_o")]
public List<ContractApprovalInfoVO> ApprovalInfos { get; set; }
/// <summary>
/// 合约金额(元)
/// </summary>
[XmlElement("contract_amount")]
public string ContractAmount { get; set; }
/// <summary>
/// 合约名称
/// </summary>
[XmlElement("contract_name")]
public string ContractName { get; set; }
/// <summary>
/// 合约号
/// </summary>
[XmlElement("contract_no")]
public string ContractNo { get; set; }
/// <summary>
/// 币种CNY
/// </summary>
[XmlElement("currency")]
public string Currency { get; set; }
/// <summary>
/// 统计口径
/// </summary>
[XmlElement("stats_type")]
public string StatsType { get; set; }
}
}