🎨 fix javadoc by removing @date

This commit is contained in:
Binary Wang
2022-08-23 00:37:10 +08:00
parent f94e67056d
commit 36602d58a5
757 changed files with 789 additions and 762 deletions

View File

@@ -15,7 +15,7 @@ import java.util.concurrent.TimeUnit;
* 消息去重记录消息ID首次出现时的时间戳
* 15S后定时任务触发时废除该记录消息ID
* </p>
* @date 2022/5/26 1:32
* created on 2022/5/26 1:32
*/
@Slf4j
public class WxMessageInMemoryDuplicateCheckerSingleton implements WxMessageDuplicateChecker {

View File

@@ -4,7 +4,7 @@ package me.chanjar.weixin.common.bean;
* 包含toJson()方法的接口.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-10-05
* created on 2020-10-05
*/
public interface ToJson {
/**

View File

@@ -11,7 +11,7 @@ import java.io.Serializable;
* oauth2用户个人信息.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-10-11
* created on 2020-10-11
*/
@Data
public class WxOAuth2UserInfo implements Serializable {

View File

@@ -10,7 +10,7 @@ import java.io.Serializable;
* OCR身份证识别结果.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-06-23
* created on 2019-06-23
*/
@Data
public class WxOcrIdCardResult implements Serializable {

View File

@@ -8,7 +8,7 @@ import java.io.Serializable;
* .
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2021-01-27
* created on 2021-01-27
*/
@Data
public class CategoryData implements Serializable {

View File

@@ -8,7 +8,7 @@ import java.io.Serializable;
* .
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2021-01-27
* created on 2021-01-27
*/
@Data
public class PubTemplateKeyword implements Serializable {

View File

@@ -8,7 +8,7 @@ import java.io.Serializable;
* .
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2021-01-27
* created on 2021-01-27
*/
@Data
public class TemplateInfo implements Serializable {

View File

@@ -4,7 +4,7 @@ package me.chanjar.weixin.common.error;
* WxJava专用的runtime exception.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-09-26
* created on 2020-09-26
*/
public class WxRuntimeException extends RuntimeException {
private static final long serialVersionUID = 4881698471192264412L;

View File

@@ -21,7 +21,7 @@ import java.io.IOException;
* .
*
* @author : zhayueran
* @date 2019/6/27 14:06
* created on 2019/6/27 14:06
*/
public class OcrDiscernApacheHttpRequestExecutor extends OcrDiscernRequestExecutor<CloseableHttpClient, HttpHost> {
public OcrDiscernApacheHttpRequestExecutor(RequestHttp requestHttp) {

View File

@@ -13,7 +13,7 @@ import java.io.IOException;
* .
*
* @author zhayueran
* @date 2019/6/27 15:06
* created on 2019/6/27 15:06
*/
public abstract class OcrDiscernRequestExecutor<H, P> implements RequestExecutor<String, File> {
protected RequestHttp<H, P> requestHttp;

View File

@@ -8,7 +8,7 @@ import me.chanjar.weixin.common.error.WxErrorException;
* oauth2 相关接口.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-08
* created on 2020-08-08
*/
public interface WxOAuth2Service {
/**

View File

@@ -15,7 +15,7 @@ import java.io.File;
* https://mp.weixin.qq.com/wiki?t=resource/res_main&id=21516712284rHWMX
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-06-22
* created on 2019-06-22
*/
public interface WxOcrService {

View File

@@ -8,7 +8,7 @@ import me.chanjar.weixin.common.error.WxErrorException;
* 微信服务接口.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-04-25
* created on 2020-04-25
*/
public interface WxService {
/**

View File

@@ -8,7 +8,7 @@ import java.util.Arrays;
/**
*
* @author Daniel Qian
* @date 14/10/19
* created on 14/10/19
*/
public class SHA1 {

View File

@@ -14,7 +14,7 @@ import java.io.Serializable;
* InputStreamData
*
* @author zichuan.zhou91@gmail.com
* @date 2022/2/15
* created on 2022/2/15
*/
@Data
@Accessors(chain = true)

View File

@@ -25,7 +25,7 @@ import java.io.InputStream;
* .
*
* @author ecoolper
* @date 2017/5/5
* created on 2017/5/5
*/
public class ApacheMediaDownloadRequestExecutor extends BaseMediaDownloadRequestExecutor<CloseableHttpClient, HttpHost> {
public ApacheMediaDownloadRequestExecutor(RequestHttp requestHttp, File tmpDirFile) {

View File

@@ -23,7 +23,7 @@ import java.io.IOException;
* 文件输入流上传.
*
* @author meiqin.zhou91@gmail.com
* @date 2022/02/15
* created on 2022/02/15
*/
public class ApacheMediaInputStreamUploadRequestExecutor extends MediaInputStreamUploadRequestExecutor<CloseableHttpClient, HttpHost> {
public ApacheMediaInputStreamUploadRequestExecutor(RequestHttp requestHttp) {

View File

@@ -16,7 +16,7 @@ import java.io.IOException;
* .
*
* @author ecoolper
* @date 2017/5/4
* created on 2017/5/4
*/
public class ApacheSimpleGetRequestExecutor extends SimpleGetRequestExecutor<CloseableHttpClient, HttpHost> {
public ApacheSimpleGetRequestExecutor(RequestHttp requestHttp) {

View File

@@ -18,7 +18,7 @@ import java.io.IOException;
* .
*
* @author ecoolper
* @date 2017/5/4
* created on 2017/5/4
*/
public class ApacheSimplePostRequestExecutor extends SimplePostRequestExecutor<CloseableHttpClient, HttpHost> {
public ApacheSimplePostRequestExecutor(RequestHttp requestHttp) {

View File

@@ -25,7 +25,7 @@ import java.nio.charset.StandardCharsets;
* .
*
* @author ecoolper
* @date 2017/5/5
* created on 2017/5/5
*/
public class JoddHttpMediaDownloadRequestExecutor extends BaseMediaDownloadRequestExecutor<HttpConnectionProvider, ProxyInfo> {
public JoddHttpMediaDownloadRequestExecutor(RequestHttp requestHttp, File tmpDirFile) {

View File

@@ -22,7 +22,7 @@ import java.nio.charset.StandardCharsets;
* 文件输入流上传.
*
* @author meiqin.zhou91@gmail.com
* @date 2022/02/15
* created on 2022/02/15
*/
public class JoddHttpMediaInputStreamUploadRequestExecutor extends MediaInputStreamUploadRequestExecutor<HttpConnectionProvider, ProxyInfo> {
public JoddHttpMediaInputStreamUploadRequestExecutor(RequestHttp requestHttp) {

View File

@@ -20,7 +20,7 @@ import java.nio.charset.StandardCharsets;
* .
*
* @author ecoolper
* @date 2017/5/5
* created on 2017/5/5
*/
public class JoddHttpMediaUploadRequestExecutor extends MediaUploadRequestExecutor<HttpConnectionProvider, ProxyInfo> {
public JoddHttpMediaUploadRequestExecutor(RequestHttp requestHttp) {

View File

@@ -18,7 +18,7 @@ import java.nio.charset.StandardCharsets;
/**
* @author liming1019
* @date 2021/8/10
* created on 2021/8/10
*/
@Slf4j
public class JoddHttpMinishopMediaUploadRequestCustomizeExecutor extends MinishopUploadRequestCustomizeExecutor<HttpConnectionProvider, ProxyInfo> {

View File

@@ -22,7 +22,7 @@ import java.nio.charset.StandardCharsets;
* .
*
* @author ecoolper
* @date 2017/5/5
* created on 2017/5/5
*/
@Slf4j
public class JoddHttpMinishopMediaUploadRequestExecutor extends MinishopUploadRequestExecutor<HttpConnectionProvider, ProxyInfo> {

View File

@@ -17,7 +17,7 @@ import java.nio.charset.StandardCharsets;
* .
*
* @author ecoolper
* @date 2017/5/4
* created on 2017/5/4
*/
public class JoddHttpSimpleGetRequestExecutor extends SimpleGetRequestExecutor<HttpConnectionProvider, ProxyInfo> {
public JoddHttpSimpleGetRequestExecutor(RequestHttp requestHttp) {

View File

@@ -17,7 +17,7 @@ import java.nio.charset.StandardCharsets;
* .
*
* @author ecoolper
* @date 2017/5/4
* created on 2017/5/4
*/
public class JoddHttpSimplePostRequestExecutor extends SimplePostRequestExecutor<HttpConnectionProvider, ProxyInfo> {
public JoddHttpSimplePostRequestExecutor(RequestHttp requestHttp) {

View File

@@ -21,7 +21,7 @@ import java.io.IOException;
/**
*.
* @author ecoolper
* @date 2017/5/5
* created on 2017/5/5
*/
@Slf4j
public class OkHttpMediaDownloadRequestExecutor extends BaseMediaDownloadRequestExecutor<OkHttpClient, OkHttpProxyInfo> {

View File

@@ -17,7 +17,7 @@ import java.io.InputStream;
* 文件输入流上传.
*
* @author meiqin.zhou91@gmail.com
* @date 2022/02/15
* created on 2022/02/15
*/
public class OkHttpMediaInputStreamUploadRequestExecutor extends MediaInputStreamUploadRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
public OkHttpMediaInputStreamUploadRequestExecutor(RequestHttp requestHttp) {

View File

@@ -15,7 +15,7 @@ import java.io.IOException;
* .
*
* @author ecoolper
* @date 2017/5/5
* created on 2017/5/5
*/
public class OkHttpMediaUploadRequestExecutor extends MediaUploadRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
public OkHttpMediaUploadRequestExecutor(RequestHttp requestHttp) {

View File

@@ -14,7 +14,7 @@ import java.io.IOException;
/**
* @author liming1019
* @date 2021/8/10
* created on 2021/8/10
*/
@Slf4j
public class OkHttpMinishopMediaUploadRequestCustomizeExecutor extends MinishopUploadRequestCustomizeExecutor<OkHttpClient, OkHttpProxyInfo> {

View File

@@ -18,7 +18,7 @@ import java.io.IOException;
* .
*
* @author ecoolper
* @date 2017/5/5
* created on 2017/5/5
*/
@Slf4j
public class OkHttpMinishopMediaUploadRequestExecutor extends MinishopUploadRequestExecutor<OkHttpClient, OkHttpProxyInfo> {

View File

@@ -14,7 +14,7 @@ import java.io.IOException;
* .
*
* @author ecoolper
* @date 2017/5/4
* created on 2017/5/4
*/
public class OkHttpSimpleGetRequestExecutor extends SimpleGetRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
public OkHttpSimpleGetRequestExecutor(RequestHttp requestHttp) {

View File

@@ -14,7 +14,7 @@ import java.util.Objects;
* .
*
* @author ecoolper
* @date 2017/5/4
* created on 2017/5/4
*/
@Slf4j
public class OkHttpSimplePostRequestExecutor extends SimplePostRequestExecutor<OkHttpClient, OkHttpProxyInfo> {

View File

@@ -9,7 +9,7 @@ import com.thoughtworks.xstream.converters.basic.StringConverter;
* Integer型数组转换器.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-08-22
* created on 2019-08-22
*/
public class IntegerArrayConverter extends StringConverter {
@Override

View File

@@ -9,7 +9,7 @@ import com.thoughtworks.xstream.converters.basic.StringConverter;
* Long型数组转换器.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-08-22
* created on 2019-08-22
*/
public class LongArrayConverter extends StringConverter {
@Override

View File

@@ -11,7 +11,7 @@ import static org.testng.Assert.assertTrue;
* @author jiangby
* @version 1.0
* @description: 作用
* @date 2022/5/26 1:46
* created on 2022/5/26 1:46
*/
@Test
public class WxMessageInMemoryDuplicateCheckerSingletonTest {

View File

@@ -6,7 +6,7 @@ import org.testng.annotations.Test;
/**
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-06-06
* created on 2020-06-06
*/
public class WxNetCheckResultTest {

View File

@@ -9,7 +9,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* GsonHelper 的单元测试.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-09-04
* created on 2020-09-04
*/
public class GsonHelperTest {