using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InsClaimAttachment Data Structure.
///
[Serializable]
public class InsClaimAttachment : AopObject
{
///
/// 材料描述
///
[JsonProperty("description")]
public string Description { get; set; }
///
/// 文件名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 附件对应的路径
///
[JsonProperty("path")]
public string Path { get; set; }
///
/// 审核理由
///
[JsonProperty("reason")]
public string Reason { get; set; }
///
/// 材料审核状态
///
[JsonProperty("status")]
public string Status { get; set; }
///
/// 附件类型
///
[JsonProperty("type")]
public string Type { get; set; }
}
}