You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
using Newtonsoft.Json;
|
|
using System;
|
|
|
|
namespace DS.WMS.PrintApi.Utils
|
|
{
|
|
public class JsonConverterLong : JsonConverter
|
|
{
|
|
/// <summary>
|
|
/// 是否可以转换
|
|
/// </summary>
|
|
/// <param name="objectType"></param>
|
|
/// <returns></returns>
|
|
public override bool CanConvert(Type objectType)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 读json
|
|
/// </summary>
|
|
/// <param name="reader"></param>
|
|
/// <param name="objectType"></param>
|
|
/// <param name="existingValue"></param>
|
|
/// <param name="serializer"></param>
|
|
/// <returns></returns>
|
|
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
|
|
{
|
|
if ((reader.ValueType == null || reader.ValueType == typeof(long?)) && reader.Value == null)
|
|
{
|
|
return null;
|
|
}
|
|
else
|
|
{
|
|
long.TryParse(reader.Value != null ? reader.Value.ToString() : "", out long value);
|
|
return value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 写json
|
|
/// </summary>
|
|
/// <param name="writer"></param>
|
|
/// <param name="value"></param>
|
|
/// <param name="serializer"></param>
|
|
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
|
|
{
|
|
if (value == null)
|
|
writer.WriteValue(value);
|
|
else
|
|
writer.WriteValue(value + "");
|
|
}
|
|
}
|
|
} |