2021-06-04 01:10:23 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-06-09 17:12:08 +08:00
|
|
|
|
/// <para>表示 [POST] /cgi-bin/card/invoice/reimburse/getinvoiceinfobatch 接口的请求。</para>
|
2021-06-04 01:10:23 +08:00
|
|
|
|
/// </summary>
|
2021-06-09 17:12:08 +08:00
|
|
|
|
public class CgibinCardInvoiceReimburseGetInvoiceInfoBatchRequest : WechatWorkRequest
|
2021-06-04 01:10:23 +08:00
|
|
|
|
{
|
|
|
|
|
public static class Types
|
|
|
|
|
{
|
|
|
|
|
public class InvoiceCard
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置发票卡券模板编号。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("card_id")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("card_id")]
|
|
|
|
|
public string CardId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置经过加密的发票卡券 Code。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("encrypt_code")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("encrypt_code")]
|
|
|
|
|
public string EncryptedCardCode { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置发票卡券列表。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("item_list")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("item_list")]
|
|
|
|
|
public IList<Types.InvoiceCard> InvoiceCardList { get; set; } = new List<Types.InvoiceCard>();
|
|
|
|
|
}
|
|
|
|
|
}
|