43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// OuterAttachment Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class OuterAttachment : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 资质类型:ISV_ICP_LICENCE-代理商营业执照;ICP_LICENCE-营业执照;PORTRAIT_AUTH_LICENSE-肖像授权文件;TRADE_MARK_LICENSE - 商标注册证;SPECIAL_BUSINESS_LICENSE - 特殊行业资质;OTHER_FILE - 其他文件
|
||
/// </summary>
|
||
[XmlElement("attachment_type")]
|
||
public string AttachmentType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 资质文件oss存储key值;file_key和file_url,至少有1个不能为空
|
||
/// </summary>
|
||
[XmlElement("file_key")]
|
||
public string FileKey { get; set; }
|
||
|
||
/// <summary>
|
||
/// 资质文件url;file_key和file_url,至少有1个不能为空
|
||
/// </summary>
|
||
[XmlElement("file_url")]
|
||
public string FileUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 有效结束日期;格式:YYYY-MM-DD
|
||
/// </summary>
|
||
[XmlElement("validate_end_time")]
|
||
public string ValidateEndTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 有效开始日期,格式:YYYY-MM-DD
|
||
/// </summary>
|
||
[XmlElement("validate_start_time")]
|
||
public string ValidateStartTime { get; set; }
|
||
}
|
||
}
|