Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

52 lines
1.3 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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ArrangementBaseSelector Data Structure.
/// </summary>
[Serializable]
public class ArrangementBaseSelector : AopObject
{
/// <summary>
/// 合约状态列表.01 待生效02 生效03失效04 取消
/// </summary>
[JsonProperty("ar_statuses")]
public List<string> ArStatuses { get; set; }
/// <summary>
/// 产品外标类型:01机构产品 02借款人信息 03主站产品 04 标准机构产品 05内部业务平台标准产品
/// </summary>
[JsonProperty("mark_type")]
public string MarkType { get; set; }
/// <summary>
/// 产品编码列表
/// </summary>
[JsonProperty("pd_codes")]
public List<string> PdCodes { get; set; }
/// <summary>
/// 产品外标列表
/// </summary>
[JsonProperty("pd_marks")]
public List<string> PdMarks { get; set; }
/// <summary>
/// 是否查询出产品外标
/// </summary>
[JsonProperty("select_pd_mark")]
public bool SelectPdMark { get; set; }
/// <summary>
/// 是否查询出产品名称
/// </summary>
[JsonProperty("select_pd_name")]
public bool SelectPdName { get; set; }
}
}