using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Model { /// /// long 与 int 的映射关系 /// public class LongAndInt : JsonList { /// /// long 值 /// public long LongValue { get; set; } /// /// int 值 /// public long IntValue { get; set; } } }