31 lines
808 B
C#
31 lines
808 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AttachmentDetail Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AttachmentDetail : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 创建流程时指定的附件code,可能为空。(身份证正反面的固定code:正面:ESIGN_IDCARD,背面:ESIGN_BACK_IDCARD)
|
||
/// </summary>
|
||
[XmlElement("code")]
|
||
public string Code { get; set; }
|
||
|
||
/// <summary>
|
||
/// 附件文件名
|
||
/// </summary>
|
||
[XmlElement("file_name")]
|
||
public string FileName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 附件下载地址
|
||
/// </summary>
|
||
[XmlElement("file_url")]
|
||
public string FileUrl { get; set; }
|
||
}
|
||
}
|