🎨 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

@ -9,7 +9,7 @@ import org.springframework.context.annotation.Import;
* 企业微信自动注册 * 企业微信自动注册
* *
* @author yl * @author yl
* @date 2021/12/6 * created on 2021/12/6
*/ */
@Configuration @Configuration
@EnableConfigurationProperties(WxCpProperties.class) @EnableConfigurationProperties(WxCpProperties.class)

View File

@ -14,7 +14,7 @@ import org.springframework.context.annotation.Configuration;
* 企业微信平台相关服务自动注册 * 企业微信平台相关服务自动注册
* *
* @author yl * @author yl
* @date 2021/12/6 * created on 2021/12/6
*/ */
@Configuration @Configuration
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -8,7 +8,7 @@ import org.springframework.context.annotation.Import;
* 企业微信存储策略自动配置 * 企业微信存储策略自动配置
* *
* @author yl * @author yl
* @date 2021/12/6 * created on 2021/12/6
*/ */
@Configuration @Configuration
@Import({ @Import({

View File

@ -10,7 +10,7 @@ import java.io.Serializable;
* 企业微信接入相关配置属性 * 企业微信接入相关配置属性
* *
* @author yl * @author yl
* @date 2021/12/6 * created on 2021/12/6
*/ */
@Data @Data
@NoArgsConstructor @NoArgsConstructor

View File

@ -8,7 +8,7 @@ import org.apache.commons.lang3.StringUtils;
* WxCpConfigStorage 抽象配置类 * WxCpConfigStorage 抽象配置类
* *
* @author yl & Wang_Wong * @author yl & Wang_Wong
* @date 2021/12/6 * created on 2021/12/6
*/ */
public abstract class AbstractWxCpConfigStorageConfiguration { public abstract class AbstractWxCpConfigStorageConfiguration {

View File

@ -13,7 +13,7 @@ import org.springframework.context.annotation.Configuration;
* 自动装配基于内存策略配置 * 自动装配基于内存策略配置
* *
* @author yl * @author yl
* @date 2021/12/6 * created on 2021/12/6
*/ */
@Configuration @Configuration
@ConditionalOnProperty( @ConditionalOnProperty(

View File

@ -9,7 +9,7 @@ import org.springframework.context.annotation.Import;
* 自动配置. * 自动配置.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-08-10 * created on 2019-08-10
*/ */
@Configuration @Configuration
@EnableConfigurationProperties(WxMaProperties.class) @EnableConfigurationProperties(WxMaProperties.class)

View File

@ -4,7 +4,7 @@ package com.binarywang.spring.starter.wxjava.miniapp.enums;
* httpclient类型. * httpclient类型.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-05-25 * created on 2020-05-25
*/ */
public enum HttpClientType { public enum HttpClientType {
/** /**

View File

@ -4,7 +4,7 @@ package com.binarywang.spring.starter.wxjava.miniapp.enums;
* storage类型. * storage类型.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-05-25 * created on 2020-05-25
*/ */
public enum StorageType { public enum StorageType {
/** /**

View File

@ -6,7 +6,7 @@ import lombok.Data;
* redis 配置. * redis 配置.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30 * created on 2020-08-30
*/ */
@Data @Data
public class RedisProperties { public class RedisProperties {

View File

@ -12,7 +12,7 @@ import static com.binarywang.spring.starter.wxjava.miniapp.properties.WxMaProper
* 属性配置类. * 属性配置类.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-08-10 * created on 2019-08-10
*/ */
@Data @Data
@ConfigurationProperties(prefix = PREFIX) @ConfigurationProperties(prefix = PREFIX)

View File

@ -4,7 +4,7 @@ package com.binarywang.spring.starter.wxjava.mp.enums;
* httpclient类型. * httpclient类型.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30 * created on 2020-08-30
*/ */
public enum HttpClientType { public enum HttpClientType {
/** /**

View File

@ -4,7 +4,7 @@ package com.binarywang.spring.starter.wxjava.mp.enums;
* storage类型. * storage类型.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30 * created on 2020-08-30
*/ */
public enum StorageType { public enum StorageType {
/** /**

View File

@ -8,7 +8,7 @@ import java.io.Serializable;
* redis 配置属性. * redis 配置属性.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30 * created on 2020-08-30
*/ */
@Data @Data
public class RedisProperties implements Serializable { public class RedisProperties implements Serializable {

View File

@ -4,7 +4,7 @@ package com.binarywang.spring.starter.wxjava.qidian.enums;
* httpclient类型. * httpclient类型.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30 * created on 2020-08-30
*/ */
public enum HttpClientType { public enum HttpClientType {
/** /**

View File

@ -4,7 +4,7 @@ package com.binarywang.spring.starter.wxjava.qidian.enums;
* storage类型. * storage类型.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30 * created on 2020-08-30
*/ */
public enum StorageType { public enum StorageType {
/** /**

View File

@ -8,7 +8,7 @@ import java.io.Serializable;
* redis 配置属性. * redis 配置属性.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30 * created on 2020-08-30
*/ */
@Data @Data
public class RedisProperties implements Serializable { public class RedisProperties implements Serializable {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -13,7 +13,7 @@ import java.io.IOException;
* . * .
* *
* @author zhayueran * @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> { public abstract class OcrDiscernRequestExecutor<H, P> implements RequestExecutor<String, File> {
protected RequestHttp<H, P> requestHttp; protected RequestHttp<H, P> requestHttp;

View File

@ -8,7 +8,7 @@ import me.chanjar.weixin.common.error.WxErrorException;
* oauth2 相关接口. * oauth2 相关接口.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-08 * created on 2020-08-08
*/ */
public interface WxOAuth2Service { 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 * https://mp.weixin.qq.com/wiki?t=resource/res_main&id=21516712284rHWMX
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-06-22 * created on 2019-06-22
*/ */
public interface WxOcrService { 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> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-04-25 * created on 2020-04-25
*/ */
public interface WxService { public interface WxService {
/** /**

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -16,7 +16,7 @@ import java.util.List;
* https://developer.work.weixin.qq.com/document/path/91552 * https://developer.work.weixin.qq.com/document/path/91552
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date 2022-01-17 * created on 2022-01-17
*/ */
@Slf4j @Slf4j
public class Finance { public class Finance {

View File

@ -5,7 +5,7 @@ import me.chanjar.weixin.cp.bean.WxCpAgentWorkBench;
/** /**
* @author songshiyu * @author songshiyu
* @date : create in 16:16 2020/9/27 * created on : create in 16:16 2020/9/27
* @description: 工作台自定义展示https://work.weixin.qq.com/api/doc/90000/90135/92535 * @description: 工作台自定义展示https://work.weixin.qq.com/api/doc/90000/90135/92535
*/ */
public interface WxCpAgentWorkBenchService { public interface WxCpAgentWorkBenchService {

View File

@ -8,7 +8,7 @@ import me.chanjar.weixin.cp.bean.export.WxCpExportResult;
* 异步导出接口 * 异步导出接口
* *
* @author <a href="https://github.com/zhongjun96">zhongjun</a> * @author <a href="https://github.com/zhongjun96">zhongjun</a>
* @date 2022/4/21 * created on 2022/4/21
**/ **/
public interface WxCpExportService { public interface WxCpExportService {

View File

@ -11,7 +11,7 @@ import java.util.List;
* 调用地址https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key= * 调用地址https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=
* *
* @author yr * @author yr
* @date 2020-8-20 * created on 2020-8-20
*/ */
public interface WxCpGroupRobotService { public interface WxCpGroupRobotService {

View File

@ -30,7 +30,7 @@ import java.util.List;
* 企业可在微信客服官网使用企业微信扫码开通微信客服开通后即可使用 * 企业可在微信客服官网使用企业微信扫码开通微信客服开通后即可使用
* *
* @author Fu * @author Fu
* @date 2022/1/19 19:25 * created on 2022/1/19 19:25
*/ */
public interface WxCpKfService { public interface WxCpKfService {

View File

@ -9,7 +9,7 @@ import me.chanjar.weixin.cp.bean.living.*;
* 官方文档https://work.weixin.qq.com/api/doc/90000/90135/93633 * 官方文档https://work.weixin.qq.com/api/doc/90000/90135/93633
* *
* @author Wang_Wong * @author Wang_Wong
* @date 2021-12-21 * created on 2021-12-21
*/ */
public interface WxCpLivingService { public interface WxCpLivingService {

View File

@ -7,7 +7,7 @@ import me.chanjar.weixin.cp.bean.message.*;
* 消息推送接口. * 消息推送接口.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020 -08-30 * created on 2020 -08-30
*/ */
public interface WxCpMessageService { public interface WxCpMessageService {
/** /**

View File

@ -14,7 +14,7 @@ import java.util.List;
* com.tencent.wework.Finance * com.tencent.wework.Finance
* *
* @author Wang_Wong * @author Wang_Wong
* @date 2022-01-14 * created on 2022-01-14
*/ */
public interface WxCpMsgAuditService { public interface WxCpMsgAuditService {

View File

@ -9,7 +9,7 @@ import me.chanjar.weixin.cp.bean.oa.selfagent.WxCpOpenApprovalData;
* https://developer.work.weixin.qq.com/document/path/90269 * https://developer.work.weixin.qq.com/document/path/90269
* *
* @author <a href="https://gitee.com/Wang_Wong/">Wang_Wong</a> * @author <a href="https://gitee.com/Wang_Wong/">Wang_Wong</a>
* @date 2022-04-06 * created on 2022-04-06
*/ */
public interface WxCpOaAgentService { public interface WxCpOaAgentService {

View File

@ -9,7 +9,7 @@ import java.util.List;
* 企业微信日历接口. * 企业微信日历接口.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-09-20 * created on 2020-09-20
*/ */
public interface WxCpOaCalendarService { public interface WxCpOaCalendarService {
/** /**

View File

@ -9,7 +9,7 @@ import java.util.List;
* 企业微信会议室接口. * 企业微信会议室接口.
* *
* @author <a href="https://github.com/lm93129">lm93129</a> * @author <a href="https://github.com/lm93129">lm93129</a>
* @date 2022年8月12日22:33:36 * created on 2022年8月12日22:33:36
*/ */
public interface WxCpOaMeetingRoomService { public interface WxCpOaMeetingRoomService {
/** /**

View File

@ -10,7 +10,7 @@ import java.util.List;
* 官方文档https://work.weixin.qq.com/api/doc/90000/90135/93648 * 官方文档https://work.weixin.qq.com/api/doc/90000/90135/93648
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020 -12-25 * created on 2020 -12-25
*/ */
public interface WxCpOaScheduleService { public interface WxCpOaScheduleService {
/** /**

View File

@ -12,7 +12,7 @@ import java.util.List;
* 企业微信OA相关接口. * 企业微信OA相关接口.
* *
* @author Element & Wang_Wong * @author Element & Wang_Wong
* @date 2019-04-06 10:52 * created on 2019-04-06 10:52
*/ */
public interface WxCpOaService { public interface WxCpOaService {

View File

@ -12,7 +12,7 @@ import java.util.List;
* https://developer.work.weixin.qq.com/document/path/93654 * https://developer.work.weixin.qq.com/document/path/93654
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date 2022-04-22 * created on 2022-04-22
*/ */
public interface WxCpOaWeDriveService { public interface WxCpOaWeDriveService {

View File

@ -12,7 +12,7 @@ import me.chanjar.weixin.cp.bean.school.health.WxCpGetReportJobInfo;
* https://developer.work.weixin.qq.com/document/path/93676 * https://developer.work.weixin.qq.com/document/path/93676
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date: 2022/5/31 9:10 * created on : 2022/5/31 9:10
*/ */
public interface WxCpSchoolHealthService { public interface WxCpSchoolHealthService {

View File

@ -16,7 +16,7 @@ import java.util.List;
* 仅复学码应用可以调用 * 仅复学码应用可以调用
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date: 2022/5/31 9:10 * created on : 2022/5/31 9:10
*/ */
public interface WxCpSchoolService { public interface WxCpSchoolService {

View File

@ -13,7 +13,7 @@ import java.util.List;
* https://developer.work.weixin.qq.com/document/path/91638 * https://developer.work.weixin.qq.com/document/path/91638
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date: 2022/6/18 9:10 * created on : 2022/6/18 9:10
*/ */
public interface WxCpSchoolUserService { public interface WxCpSchoolUserService {

View File

@ -12,7 +12,7 @@ import java.util.List;
* </pre> * </pre>
* *
* @author <a href="https://github.com/domainname">Jeff</a> * @author <a href="https://github.com/domainname">Jeff</a>
* @date 2019-05-16 * created on 2019-05-16
*/ */
public interface WxCpTaskCardService { public interface WxCpTaskCardService {

View File

@ -13,7 +13,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.WorkBench.WORKBENC
/** /**
* @author songshiyu * @author songshiyu
* @date : create in 11:24 2020/9/28 * created on : create in 11:24 2020/9/28
* @description: 工作台自定义展示实现 * @description: 工作台自定义展示实现
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -16,7 +16,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Export.*;
* 异步导出接口 * 异步导出接口
* *
* @author <a href="https://github.com/zhongjun96">zhongjun</a> * @author <a href="https://github.com/zhongjun96">zhongjun</a>
* @date 2022/4/21 * created on 2022/4/21
**/ **/
@RequiredArgsConstructor @RequiredArgsConstructor
public class WxCpExportServiceImpl implements WxCpExportService { public class WxCpExportServiceImpl implements WxCpExportService {

View File

@ -18,7 +18,7 @@ import static me.chanjar.weixin.cp.constant.WxCpConsts.GroupRobotMsgType;
* 企业微信群机器人消息发送api 实现 * 企业微信群机器人消息发送api 实现
* *
* @author yr * @author yr
* @date 2020-08-20 * created on 2020-08-20
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
public class WxCpGroupRobotServiceImpl implements WxCpGroupRobotService { public class WxCpGroupRobotServiceImpl implements WxCpGroupRobotService {

View File

@ -36,7 +36,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Kf.*;
* 微信客服接口-服务实现 * 微信客服接口-服务实现
* *
* @author Fu * @author Fu
* @date 2022/1/19 19:41 * created on 2022/1/19 19:41
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
public class WxCpKfServiceImpl implements WxCpKfService { public class WxCpKfServiceImpl implements WxCpKfService {

View File

@ -21,7 +21,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Living.*;
* https://developer.work.weixin.qq.com/document/path/93633 * https://developer.work.weixin.qq.com/document/path/93633
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date 2021-12-21 * created on 2021-12-21
*/ */
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -13,7 +13,7 @@ import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
* 消息推送接口实现类. * 消息推送接口实现类.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30 * created on 2020-08-30
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
public class WxCpMessageServiceImpl implements WxCpMessageService { public class WxCpMessageServiceImpl implements WxCpMessageService {

View File

@ -28,7 +28,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.MsgAudit.*;
* 会话内容存档接口实现类. * 会话内容存档接口实现类.
* *
* @author Wang_Wong * @author Wang_Wong
* @date 2022-01-17 * created on 2022-01-17
*/ */
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -18,7 +18,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Oa.GET_OPEN_APPROV
* 企业微信自建应用接口实现类. * 企业微信自建应用接口实现类.
* *
* @author <a href="https://gitee.com/Wang_Wong/">Wang_Wong</a> * @author <a href="https://gitee.com/Wang_Wong/">Wang_Wong</a>
* @date 2022-04-06 * created on 2022-04-06
*/ */
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -18,7 +18,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Oa.*;
* . * .
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-09-20 * created on 2020-09-20
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
public class WxCpOaCalendarServiceImpl implements WxCpOaCalendarService { public class WxCpOaCalendarServiceImpl implements WxCpOaCalendarService {

View File

@ -22,7 +22,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Oa.*;
* 企业微信日程接口实现类. * 企业微信日程接口实现类.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-12-25 * created on 2020-12-25
*/ */
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -25,7 +25,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Oa.*;
* 企业微信 OA 接口实现 * 企业微信 OA 接口实现
* *
* @author Element * @author Element
* @date 2019-04-06 11:20 * created on 2019-04-06 11:20
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
public class WxCpOaServiceImpl implements WxCpOaService { public class WxCpOaServiceImpl implements WxCpOaService {

View File

@ -18,7 +18,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Oa.*;
* 企业微信微盘接口实现类. * 企业微信微盘接口实现类.
* *
* @author Wang_Wong * @author Wang_Wong
* @date 2022-04-22 * created on 2022-04-22
*/ */
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -20,7 +20,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.School.*;
* 企业微信家校应用 健康上报接口实现类. * 企业微信家校应用 健康上报接口实现类.
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date: 2022/5/31 9:16 * created on : 2022/5/31 9:16
*/ */
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -22,7 +22,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.School.*;
* https://developer.work.weixin.qq.com/document/path/93744 * https://developer.work.weixin.qq.com/document/path/93744
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date: 2022/6/1 14:05 * created on : 2022/6/1 14:05
*/ */
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -25,7 +25,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.School.*;
* https://developer.work.weixin.qq.com/document/path/91638 * https://developer.work.weixin.qq.com/document/path/91638
* *
* @author <a href="https://github.com/0katekate0">Wang_Wong</a> * @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date: 2022/6/18 9:10 * created on : 2022/6/18 9:10
*/ */
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -19,7 +19,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.TaskCard.*;
* </pre> * </pre>
* *
* @author <a href="https://github.com/domainname">Jeff</a> * @author <a href="https://github.com/domainname">Jeff</a>
* @date 2019-05-16 * created on 2019-05-16
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
public class WxCpTaskCardServiceImpl implements WxCpTaskCardService { public class WxCpTaskCardServiceImpl implements WxCpTaskCardService {

View File

@ -15,7 +15,7 @@ import java.util.List;
/** /**
* @author songshiyu * @author songshiyu
* @date : create in 16:09 2020/9/27 * created on : create in 16:09 2020/9/27
* 工作台自定义展示 * 工作台自定义展示
*/ */
@Data @Data

View File

@ -11,7 +11,7 @@ import java.io.Serializable;
* 返回结果 * 返回结果
* *
* @author yqx & WangWong * @author yqx & WangWong
* @date 2020/3/16 * created on 2020/3/16
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -10,7 +10,7 @@ import java.io.Serializable;
* 服务商凭证. * 服务商凭证.
* *
* @author <a href="https://github.com/binarywang">Binary Wang</a> * @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-11-02 * created on 2019-11-02
*/ */
@Data @Data
public class WxCpProviderToken implements Serializable { public class WxCpProviderToken implements Serializable {

View File

@ -17,7 +17,7 @@ import java.util.List;
* </pre> * </pre>
* *
* @author <a href="https://github.com/domainname">Jeff</a> * @author <a href="https://github.com/domainname">Jeff</a>
* @date 2019-05-16 * created on 2019-05-16
*/ */
@Data @Data
@AllArgsConstructor @AllArgsConstructor

View File

@ -9,7 +9,7 @@ import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
* 预授权码返回 * 预授权码返回
* *
* @author yqx * @author yqx
* @date 2020/3/19 * created on 2020/3/19
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -8,7 +8,7 @@ import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
/** /**
* 应用市场延长试用期结果 * 应用市场延长试用期结果
* @author leiguoqing * @author leiguoqing
* @date 2022年4月24日 * created on 2022年4月24日
*/ */
@Getter @Getter
@Setter @Setter

View File

@ -12,7 +12,7 @@ import java.util.List;
* 登录信息 * 登录信息
* *
* @author Jamie.shi * @author Jamie.shi
* @date 2020-08-03 17:18 * created on 2020-08-03 17:18
**/ **/
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -10,7 +10,7 @@ import java.io.Serializable;
* 异步导出参数 * 异步导出参数
* *
* @author zhongjun * @author zhongjun
* @date 2022/4/21 * created on 2022/4/21
**/ **/
@Data @Data
public class WxCpExportRequest implements Serializable { public class WxCpExportRequest implements Serializable {

View File

@ -11,7 +11,7 @@ import java.util.List;
* 异步导出响应 * 异步导出响应
* *
* @author zhongjun * @author zhongjun
* @date 2022/4/21 * created on 2022/4/21
**/ **/
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -10,7 +10,7 @@ import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
* 企业发表内容到客户的朋友圈 创建发表任务结果 * 企业发表内容到客户的朋友圈 创建发表任务结果
* *
* @author leiin * @author leiin
* @date 2021-10-29 * created on 2021-10-29
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -17,7 +17,7 @@ import java.util.List;
* 企业发表内容到客户的朋友圈 创建发表任务 * 企业发表内容到客户的朋友圈 创建发表任务
* *
* @author leiin * @author leiin
* @date 2021-10-29 * created on 2021-10-29
*/ */
@Data @Data
@Builder @Builder

Some files were not shown because too many files have changed in this diff Show More