31 lines
661 B
C#
31 lines
661 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// EcoRenthouseOtherAmount Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class EcoRenthouseOtherAmount : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 30
|
|
/// </summary>
|
|
[XmlElement("amount")]
|
|
public string Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用名称
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用单位
|
|
/// </summary>
|
|
[XmlElement("unit")]
|
|
public string Unit { get; set; }
|
|
}
|
|
}
|