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

36 lines
1.3 KiB
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>
/// AlipayEcoMycarCarmodelBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarCarmodelBatchqueryModel : AopObject
{
/// <summary>
/// 支付宝车型库品牌编号(系统唯一)
/// </summary>
[JsonProperty("brand_id")]
public string BrandId { get; set; }
/// <summary>
/// 支付宝车型库厂商编号(系统唯一)
/// </summary>
[JsonProperty("company_id")]
public string CompanyId { get; set; }
/// <summary>
/// 查询类型接口通过此参数判断本次请求是查询品牌信息还是车型信息等brands查询品牌series查询车系company(厂商)models查询车型当该字段值为brands时则其他参数不需要填值当该字段为series时则字段brand_id为必填当该字段为company时则字段brand_id为必填当该字段为models时则字段serie_id或者company_id不能同时为空
/// </summary>
[JsonProperty("query_type")]
public string QueryType { get; set; }
/// <summary>
/// 支付宝车型库车系编号(系统唯一)
/// </summary>
[JsonProperty("serie_id")]
public string SerieId { get; set; }
}
}