using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SealPosition Data Structure. /// [Serializable] public class SealPosition : AopObject { /// /// 关键字 /// [XmlElement("keyword")] public string Keyword { get; set; } /// /// 加盖签章页号 /// [XmlElement("page_no")] public long PageNo { get; set; } /// /// 类型 1 : 基于关键字定位 2 : 基于相对位置定位 3 : 默认签名区 4 : 齐缝章 /// [XmlElement("type")] public long Type { get; set; } /// /// 相对于某一页的X轴偏移 /// [XmlElement("x")] public long X { get; set; } /// /// 相对于某一页的y轴偏移 /// [XmlElement("y")] public long Y { get; set; } } }