mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-23 22:11:40 +08:00
统一规范化部分javadoc
This commit is contained in:
parent
9d27c15136
commit
13ca47c91b
@ -20,8 +20,9 @@ import java.util.Map;
|
||||
* <pre>
|
||||
* bean操作的一些工具类
|
||||
* Created by Binary Wang on 2016-10-21.
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* </pre>
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
*/
|
||||
public class BeanUtils {
|
||||
private static Logger log = LoggerFactory.getLogger(BeanUtils.class);
|
||||
|
@ -8,8 +8,9 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* <pre>
|
||||
* 自定义的ToString方法,用于产生去掉空值属性的字符串
|
||||
* Created by Binary Wang on 2016-10-27.
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* </pre>
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public class ToStringUtils {
|
||||
public static final ToStringStyle THE_STYLE = new SimpleMultiLineToStringStyle();
|
||||
|
@ -10,7 +10,7 @@ import static org.testng.Assert.assertNotNull;
|
||||
* Created by BinaryWang on 2017/6/10.
|
||||
* </pre>
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public class SHA1Test {
|
||||
@Test
|
||||
|
@ -4,8 +4,9 @@ package me.chanjar.weixin.cp.api.impl;
|
||||
* <pre>
|
||||
* 默认接口实现类,使用apache httpclient实现
|
||||
* Created by Binary Wang on 2017-5-27.
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* </pre>
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public class WxCpServiceImpl extends WxCpServiceApacheHttpClientImpl {
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
package me.chanjar.weixin.mp.bean.datacube;
|
||||
|
||||
import com.google.gson.JsonParser;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.google.gson.reflect.TypeToken;
|
||||
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
|
||||
@ -9,9 +8,10 @@ import java.util.List;
|
||||
|
||||
/**
|
||||
* 图文分析数据接口返回结果对象
|
||||
* <p>
|
||||
* Created by Binary Wang on 2016/8/24.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* Created by Binary Wang on 2016/8/24.
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public class WxDataCubeArticleResult extends WxDataCubeBaseResult {
|
||||
private static final long serialVersionUID = -9222452497954511765L;
|
||||
|
@ -1,6 +1,5 @@
|
||||
package me.chanjar.weixin.mp.bean.datacube;
|
||||
|
||||
import com.google.gson.JsonParser;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.google.gson.reflect.TypeToken;
|
||||
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
|
||||
@ -9,9 +8,10 @@ import java.util.List;
|
||||
|
||||
/**
|
||||
* 图文分析数据接口返回结果对象
|
||||
* <p>
|
||||
* Created by Binary Wang on 2016/8/24.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* Created by Binary Wang on 2016/8/24.
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public class WxDataCubeArticleTotal extends WxDataCubeBaseResult {
|
||||
private static final long serialVersionUID = -7634365687303052699L;
|
||||
|
@ -6,11 +6,12 @@ import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 获取图文群发总数据接口(getarticletotal)中的详细字段
|
||||
* <p>
|
||||
* Created by Binary Wang on 2016/8/24.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* Created by Binary Wang on 2016/8/24.
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public class WxDataCubeArticleTotalDetail implements Serializable{
|
||||
public class WxDataCubeArticleTotalDetail implements Serializable {
|
||||
private static final long serialVersionUID = -5136169129771430052L;
|
||||
|
||||
/**
|
||||
|
@ -12,7 +12,7 @@ import java.io.Serializable;
|
||||
* Created by Binary Wang on 2016/8/25.
|
||||
* </pre>
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public abstract class WxDataCubeBaseResult implements Serializable {
|
||||
private static final long serialVersionUID = 8780389911053297600L;
|
||||
|
@ -1,6 +1,5 @@
|
||||
package me.chanjar.weixin.mp.bean.datacube;
|
||||
|
||||
import com.google.gson.JsonParser;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.google.gson.reflect.TypeToken;
|
||||
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
|
||||
@ -9,9 +8,10 @@ import java.util.List;
|
||||
|
||||
/**
|
||||
* 接口分析数据接口返回结果对象
|
||||
* <p>
|
||||
* Created by Binary Wang on 2016/8/30.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* Created by Binary Wang on 2016/8/30.
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public class WxDataCubeInterfaceResult extends WxDataCubeBaseResult {
|
||||
private static final long serialVersionUID = 597734329161281398L;
|
||||
|
@ -1,6 +1,5 @@
|
||||
package me.chanjar.weixin.mp.bean.datacube;
|
||||
|
||||
import com.google.gson.JsonParser;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.google.gson.reflect.TypeToken;
|
||||
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
|
||||
@ -9,9 +8,10 @@ import java.util.List;
|
||||
|
||||
/**
|
||||
* 消息分析数据接口返回结果对象
|
||||
* <p>
|
||||
* Created by Binary Wang on 2016/8/29.
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* Created by Binary Wang on 2016/8/29.
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
public class WxDataCubeMsgResult extends WxDataCubeBaseResult {
|
||||
private static final long serialVersionUID = 6932121822150573659L;
|
||||
|
Loading…
Reference in New Issue
Block a user