mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-03-10 00:13:36 +08:00
feat(tenpayv2): 导入项目
This commit is contained in:
@@ -0,0 +1,106 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/mch/customs/customdeclareorder 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class CreateMerchantCustomsCustomDeclarationRequest : WechatTenpaySignableRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置商户订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
||||
public string? OutTradeNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信支付订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
||||
public string? TransactionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_no")]
|
||||
public string? SubOrderNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置海关。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("customs")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("customs")]
|
||||
public string Customs { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户海关备案号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("mch_customs_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("mch_customs_no")]
|
||||
public string MerchantCustomsNumber { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置关税(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("duty")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("duty")]
|
||||
public int? Duty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置报关类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("action_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("action_type")]
|
||||
public string? ActionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置币种。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("fee_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("fee_type")]
|
||||
public string? FeeType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置应付金额(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("order_fee")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("order_fee")]
|
||||
public int? OrderFee { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置物流费(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transport_fee")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transport_fee")]
|
||||
public int? TransportFee { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商品价格(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("product_fee")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("product_fee")]
|
||||
public int? ProductFee { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置证件类型。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("cert_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("cert_type")]
|
||||
public string? CertificateType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置证件号码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("cert_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("cert_id")]
|
||||
public string? CertificateId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置证件姓名。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("name")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("name")]
|
||||
public string? CertificateName { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
using System;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/mch/customs/customdeclareorder 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CreateMerchantCustomsCustomDeclarationResponse : WechatTenpaySignableResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置状态码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("state")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("state")]
|
||||
public string State { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
||||
public string OutTradeNumber { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信支付订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
||||
public string TransactionId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_no")]
|
||||
public string? SubOrderNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_id")]
|
||||
public string? SubOrderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置最后更新时间。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("modify_time")]
|
||||
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.PureDigitalTextDateTimeOffsetConverter))]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("modify_time")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.PureDigitalTextDateTimeOffsetConverter))]
|
||||
public DateTimeOffset ModifyTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订购人和支付人身份信息校验结果。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("cert_check_result")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("cert_check_result")]
|
||||
public string? CertificateCheckResult { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置验核机构。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("verify_department")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("verify_department")]
|
||||
public string? VerifyDepartment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置验核机构交易流水号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("verify_department_trade_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("verify_department_trade_id")]
|
||||
public string? VerifyDepartmentTradeId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/mch/customs/customdeclarequery 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class QueryMerchantCustomsCustomDeclarationRequest : WechatTenpaySignableRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置商户订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
||||
public string? OutTradeNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信支付订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
||||
public string? TransactionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_no")]
|
||||
public string? SubOrderNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_id")]
|
||||
public string? SubOrderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置海关。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("customs")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("customs")]
|
||||
public string Customs { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,157 @@
|
||||
using System;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/mch/customs/customdeclarequery 接口的响应。</para>
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonConverter(typeof(Converters.ResponseClassNewtonsoftJsonConverter))]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(Converters.ResponseClassSystemTextJsonConverter))]
|
||||
public class QueryMerchantCustomsCustomDeclarationResponse : WechatTenpaySignableResponse
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
public class Record
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置状态码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("state_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("state_$n")]
|
||||
public string State { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_no_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_no_$n")]
|
||||
public string? SubOrderNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_id_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_id_$n")]
|
||||
public string? SubOrderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置海关。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("customs_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("customs_$n")]
|
||||
public string Customs { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户海关备案号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("mch_customs_no_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("mch_customs_no_$n")]
|
||||
public string MerchantCustomsNumber { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置关税(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("duty_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("duty_$n")]
|
||||
public int? Duty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置币种。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("fee_type_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("fee_type_$n")]
|
||||
public string? FeeType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置应付金额(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("order_fee_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("order_fee_$n")]
|
||||
public int? OrderFee { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置物流费(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transport_fee_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transport_fee_$n")]
|
||||
public int? TransportFee { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商品价格(单位:分)。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("product_fee_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("product_fee_$n")]
|
||||
public int? ProductFee { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置最后更新时间。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("modify_time_$n")]
|
||||
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.PureDigitalTextDateTimeOffsetConverter))]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("modify_time_$n")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.PureDigitalTextDateTimeOffsetConverter))]
|
||||
public DateTimeOffset ModifyTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置订购人和支付人身份信息校验结果。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("cert_check_result_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("cert_check_result_$n")]
|
||||
public string? CertificateCheckResult { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置申报结果说明。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("explanation_$n")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("explanation_$n")]
|
||||
public string? Explanation { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
internal static class Converters
|
||||
{
|
||||
internal class ResponseClassNewtonsoftJsonConverter : Newtonsoft.Json.Converters.FlattenNArrayObjectConverterBase<QueryMerchantCustomsCustomDeclarationResponse>
|
||||
{
|
||||
}
|
||||
|
||||
internal class ResponseClassSystemTextJsonConverter : System.Text.Json.Converters.FlattenNArrayObjectConverterBase<QueryMerchantCustomsCustomDeclarationResponse>
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信支付订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
||||
public string TransactionId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置记录列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty(Newtonsoft.Json.Converters.FlattenNArrayObjectConverterBase.PROPERTY_NAME_NARRAY)]
|
||||
[System.Text.Json.Serialization.JsonPropertyName(System.Text.Json.Converters.FlattenNArrayObjectConverterBase.PROPERTY_NAME_NARRAY)]
|
||||
public Types.Record[] RecordList { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置记录总数。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("count")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("count")]
|
||||
public int RecordCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置验核机构。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("verify_department")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("verify_department")]
|
||||
public string? VerifyDepartment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置验核机构交易流水号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("verify_department_trade_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("verify_department_trade_id")]
|
||||
public string? VerifyDepartmentTradeId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/mch/customs/customdeclareredeclare 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class RedeclareMerchantCustomsCustomDeclarationRequest : WechatTenpaySignableRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置商户订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
||||
public string? OutTradeNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信支付订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
||||
public string? TransactionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_no")]
|
||||
public string? SubOrderNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_id")]
|
||||
public string? SubOrderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置海关。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("customs")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("customs")]
|
||||
public string Customs { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户海关备案号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("mch_customs_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("mch_customs_no")]
|
||||
public string MerchantCustomsNumber { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/mch/customs/customdeclareredeclare 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class RedeclareMerchantCustomsCustomDeclarationResponse : WechatTenpaySignableResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置状态码。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("state")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("state")]
|
||||
public string State { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("out_trade_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("out_trade_no")]
|
||||
public string OutTradeNumber { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信支付订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transaction_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transaction_id")]
|
||||
public string TransactionId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置商户子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_no")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_no")]
|
||||
public string? SubOrderNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置微信子订单号。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sub_order_id")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sub_order_id")]
|
||||
public string? SubOrderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置最后更新时间。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("modify_time")]
|
||||
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.PureDigitalTextDateTimeOffsetConverter))]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("modify_time")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.PureDigitalTextDateTimeOffsetConverter))]
|
||||
public DateTimeOffset ModifyTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置申报结果说明。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("explanation")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("explanation")]
|
||||
public string? Explanation { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user