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