using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoRenthouseLeaseStateSyncModel Data Structure.
///
[Serializable]
public class AlipayEcoRenthouseLeaseStateSyncModel : AopObject
{
///
/// 租约电子合同图片,内容字节组Base64处理,支持jpg、png、jpeg、bmp格式
///
[XmlElement("lease_ca_file")]
public string LeaseCaFile { get; set; }
///
/// 租约编号(KA内部租约业务编号)
///
[XmlElement("lease_code")]
public string LeaseCode { get; set; }
///
/// 租约状态 0-未确认 1-已确认 2-已退房 3-已撤销
///
[XmlElement("lease_status")]
public long LeaseStatus { get; set; }
}
}