Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoRenthouseLeaseStateSyncModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
806 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoRenthouseLeaseStateSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoRenthouseLeaseStateSyncModel : AopObject
{
/// <summary>
/// 租约电子合同图片内容字节组Base64处理支持jpg、png、jpeg、bmp格式
/// </summary>
[JsonProperty("lease_ca_file")]
public string LeaseCaFile { get; set; }
/// <summary>
/// 租约编号(KA内部租约业务编号)
/// </summary>
[JsonProperty("lease_code")]
public string LeaseCode { get; set; }
/// <summary>
/// 租约状态 0-未确认 1-已确认 2-已退房 3-已撤销
/// </summary>
[JsonProperty("lease_status")]
public long LeaseStatus { get; set; }
}
}