40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoContractSignflowsCreateModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayEcoContractSignflowsCreateModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 附件信息(附件可作为合同的辅助证明材料,无需签署。需通过文件直传接口上传附件,获取文件id后添加)
|
||
/// </summary>
|
||
[XmlArray("attachments")]
|
||
[XmlArrayItem("attachment")]
|
||
public List<Attachment> Attachments { get; set; }
|
||
|
||
/// <summary>
|
||
/// 流程主题(简要概括合同的签署内容)
|
||
/// </summary>
|
||
[XmlElement("business_scene")]
|
||
public string BusinessScene { get; set; }
|
||
|
||
/// <summary>
|
||
/// 流程配置信息(可配置回调地址、物流单号等信息)
|
||
/// </summary>
|
||
[XmlElement("config_info")]
|
||
public ConfigInfoBean ConfigInfo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 模板信息(基于合同模板填充内容生成待签文件,并指定签署人)
|
||
/// </summary>
|
||
[XmlArray("template_infos")]
|
||
[XmlArrayItem("template_info_bean")]
|
||
public List<TemplateInfoBean> TemplateInfos { get; set; }
|
||
}
|
||
}
|