48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// FileSignature Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class FileSignature : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 签约主体证件号,关联principal对象
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("cert_no")]
|
|||
|
|
public string CertNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图章id/图章模板id
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("seal_id")]
|
|||
|
|
public string SealId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 签章位置描述
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("seal_position")]
|
|||
|
|
public SealPosition SealPosition { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 电子图章类型 1 : 图章模板自动合成 2 : 托管图章编号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("seal_type")]
|
|||
|
|
public long SealType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 签约原因描述,可展示在PDF签名区
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("sign_reason")]
|
|||
|
|
public string SignReason { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 电子签章类型 1:仅数字证书文档签名 2:仅图章 3:数字证书文档签名,加盖图章
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("signature_type")]
|
|||
|
|
public long SignatureType { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|