using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SealRequestInfo Data Structure.
///
[Serializable]
public class SealRequestInfo : AopObject
{
///
/// 图章对齐位置的x坐标自
///
[XmlElement("axis_x")]
public long AxisX { get; set; }
///
/// 图章用印位置的y坐标
///
[XmlElement("axis_y")]
public long AxisY { get; set; }
///
/// 电子图章对齐方式,目前只支持TOP_LEFT,在此顶一下图章用印位置的取值方式为,图章左上角相对原点(PDF左上角)的坐标
///
[XmlElement("location_type")]
public string LocationType { get; set; }
///
/// 图章旋转角度,取值范围为-360到360,正数为顺时针旋转,负数为逆时针旋转
///
[XmlElement("rotate_angle")]
public long RotateAngle { get; set; }
///
/// 需要使用的印章id,需要与法务中台技术确认值
///
[XmlElement("seal_id")]
public long SealId { get; set; }
}
}