using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEcoFilePathQueryResponse. /// public class AlipayEcoFilePathQueryResponse : AopResponse { /// /// 文件Id /// [XmlElement("file_id")] public string FileId { get; set; } /// /// 文件直传地址, 可以重复使用,但是只能传一样的文件,有效期一小时 /// [XmlElement("upload_url")] public string UploadUrl { get; set; } } }