NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoRenthouseLeaseStat...

31 lines
894 B
C#
Raw 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEcoRenthouseLeaseStateSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoRenthouseLeaseStateSyncModel : AopObject
{
/// <summary>
/// 租约电子合同图片内容字节组Base64处理支持jpg、png、jpeg、bmp格式
/// </summary>
[XmlElement("lease_ca_file")]
public string LeaseCaFile { get; set; }
/// <summary>
/// 租约编号(KA内部租约业务编号)
/// </summary>
[XmlElement("lease_code")]
public string LeaseCode { get; set; }
/// <summary>
/// 租约状态 0-未确认 1-已确认 2-已退房 3-已撤销
/// </summary>
[XmlElement("lease_status")]
public long LeaseStatus { get; set; }
}
}