using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsEndorseItem Data Structure. /// [Serializable] public class InsEndorseItem : AopObject { /// /// 批单项新值 /// [JsonProperty("new_value")] public string NewValue { get; set; } /// /// 批单项旧值 /// [JsonProperty("old_value")] public string OldValue { get; set; } /// /// 批单类型;303:保单改期;311:批改保单标的 /// [JsonProperty("type")] public long Type { get; set; } } }