All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.binarywang.wxpay.bean.result.WxPayShorturlResult Maven / Gradle / Ivy

There is a newer version: 4.6.9.B
Show newest version
package com.github.binarywang.wxpay.bean.result;

import com.thoughtworks.xstream.annotations.XStreamAlias;

/**
 * 
 * 转换短链接结果对象类
 * Created by Binary Wang on 2017-3-27.
 * @author binarywang(Binary Wang)
 * 
*/ @XStreamAlias("xml") public class WxPayShorturlResult extends WxPayBaseResult { /** *
   * URL链接
   * short_url
   * 是
   * String(64)
   * weixin://wxpay/s/XXXXXX
   * 转换后的URL
   * 
*/ @XStreamAlias("short_url") private String shortUrl; public String getShortUrl() { return this.shortUrl; } public void setShortUrl(String shortUrl) { this.shortUrl = shortUrl; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy