49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoRenthouseBookInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEcoRenthouseBookInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 定金金额
|
|
/// </summary>
|
|
[XmlElement("book_amount")]
|
|
public string BookAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 约定月租金额
|
|
/// </summary>
|
|
[XmlElement("book_sale_amount")]
|
|
public string BookSaleAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 约定最晚签约日格式 YYYY-MM-dd
|
|
/// </summary>
|
|
[XmlElement("latest_signing_date")]
|
|
public string LatestSigningDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 约定租约开始时间格式 YYYY-MM-dd
|
|
/// </summary>
|
|
[XmlElement("lease_begin_date")]
|
|
public string LeaseBeginDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 约定租约开始结束格式 YYYY-MM-dd
|
|
/// </summary>
|
|
[XmlElement("lease_end_date")]
|
|
public string LeaseEndDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[XmlElement("remark")]
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|