This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
usingSystem;
usingSystem.Text.Json;
usingSystem.Text.Json.Serialization;
namespaceMyshipping.Core;
/// <summary>
/// Long 类型Json返回处理
/// </summary>
publicclassLongJsonConverter:JsonConverter<long>
{
/// <summary>Reads and converts the JSON to type <typeparamref name="T" />.</summary>
/// <param name="reader">The reader.</param>
/// <param name="typeToConvert">The type to convert.</param>
/// <param name="options">An object that specifies serialization options to use.</param>