mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
pay模块批量添加缺失的javadoc文档
This commit is contained in:
@@ -14,6 +14,9 @@ import com.google.inject.Module;
|
||||
import com.thoughtworks.xstream.XStream;
|
||||
import me.chanjar.weixin.common.util.xml.XStreamInitializer;
|
||||
|
||||
/**
|
||||
* The type Api test module.
|
||||
*/
|
||||
public class ApiTestModule implements Module {
|
||||
private final Logger log = LoggerFactory.getLogger(this.getClass());
|
||||
private static final String TEST_CONFIG_XML = "test-config.xml";
|
||||
|
||||
@@ -3,14 +3,27 @@ package com.github.binarywang.wxpay.testbase;
|
||||
import com.github.binarywang.wxpay.config.WxPayConfig;
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
|
||||
/**
|
||||
* The type Xml wx pay config.
|
||||
*/
|
||||
@XStreamAlias("xml")
|
||||
public class XmlWxPayConfig extends WxPayConfig {
|
||||
private String openid;
|
||||
|
||||
/**
|
||||
* Gets openid.
|
||||
*
|
||||
* @return the openid
|
||||
*/
|
||||
public String getOpenid() {
|
||||
return openid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets openid.
|
||||
*
|
||||
* @param openid the openid
|
||||
*/
|
||||
public void setOpenid(String openid) {
|
||||
this.openid = openid;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user