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