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