NewGaoKaoApi/PaymentSDK/AliPay/Domain/SealRequestInfo.cs

43 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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