using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// FinanceFileInfo Data Structure. /// [Serializable] public class FinanceFileInfo : AopObject { /// /// 文件内容hash /// [XmlElement("file_hash")] public string FileHash { get; set; } /// /// 上传文件生成的唯一id /// [XmlElement("file_id")] public string FileId { get; set; } /// /// 用于路由文件路径的key /// [XmlElement("file_key")] public string FileKey { get; set; } } }