接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// SealPosition Data Structure.
/// </summary>
[Serializable]
public class SealPosition : AopObject
{
/// <summary>
/// 关键字
/// </summary>
[JsonProperty("keyword")]
public string Keyword { get; set; }
/// <summary>
/// 加盖签章页号
/// </summary>
[JsonProperty("page_no")]
public long PageNo { get; set; }
/// <summary>
/// 类型 1 : 基于关键字定位 2 : 基于相对位置定位 3 : 默认签名区 4 : 齐缝章
/// </summary>
[JsonProperty("type")]
public long Type { get; set; }
/// <summary>
/// 相对于某一页的X轴偏移
/// </summary>
[JsonProperty("x")]
public long X { get; set; }
/// <summary>
/// 相对于某一页的y轴偏移
/// </summary>
[JsonProperty("y")]
public long Y { get; set; }
}
}