using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayPayCodecQrcodecacheAddModel Data Structure. /// [Serializable] public class AlipayPayCodecQrcodecacheAddModel : AopObject { /// /// 是否需要gzip压缩 /// [XmlElement("compress")] public bool Compress { get; set; } /// /// 批量json的键值对 /// [XmlArray("json")] [XmlArrayItem("string")] public List Json { get; set; } /// /// bizType_gridId /// [XmlElement("key")] public string Key { get; set; } /// /// 缓存时长,单位是秒 /// [XmlElement("time")] public long Time { get; set; } /// /// 码地址静态信息分隔符码地址静态信息 /// [XmlElement("value")] public string Value { get; set; } } }