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