Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ArrangementOpenQueryResultVO.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

48 lines
1.1 KiB
C#
Raw Permalink 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>
/// ArrangementOpenQueryResultVO Data Structure.
/// </summary>
[Serializable]
public class ArrangementOpenQueryResultVO : AopObject
{
/// <summary>
/// 合约编号
/// </summary>
[JsonProperty("ar_no")]
public string ArNo { get; set; }
/// <summary>
/// 合约状态 未生效UN_INVALID 已取消CANCEL 已生效VALID 已失效INVALID
/// </summary>
[JsonProperty("ar_status")]
public string ArStatus { get; set; }
/// <summary>
/// JSON结构的扩展字段备用字段
/// </summary>
[JsonProperty("ext_data")]
public string ExtData { get; set; }
/// <summary>
/// 有效期截止时间
/// </summary>
[JsonProperty("invalid_date")]
public string InvalidDate { get; set; }
/// <summary>
/// 签约时间
/// </summary>
[JsonProperty("sign_date")]
public string SignDate { get; set; }
/// <summary>
/// 有效期起始时间
/// </summary>
[JsonProperty("valid_date")]
public string ValidDate { get; set; }
}
}