🎨 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
* @date 2021/12/6
* created on 2021/12/6
*/
@Configuration
@EnableConfigurationProperties(WxCpProperties.class)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -6,7 +6,7 @@ import lombok.Data;
* redis 配置.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-08-30
* created on 2020-08-30
*/
@Data
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>
* @date 2019-08-10
* created on 2019-08-10
*/
@Data
@ConfigurationProperties(prefix = PREFIX)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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 {

View File

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

View File

@ -5,7 +5,7 @@ import me.chanjar.weixin.cp.bean.WxCpAgentWorkBench;
/**
* @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
*/
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>
* @date 2022/4/21
* created on 2022/4/21
**/
public interface WxCpExportService {

View File

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

View File

@ -30,7 +30,7 @@ import java.util.List;
* 企业可在微信客服官网使用企业微信扫码开通微信客服开通后即可使用
*
* @author Fu
* @date 2022/1/19 19:25
* created on 2022/1/19 19:25
*/
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
*
* @author Wang_Wong
* @date 2021-12-21
* created on 2021-12-21
*/
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>
* @date 2020 -08-30
* created on 2020 -08-30
*/
public interface WxCpMessageService {
/**

View File

@ -14,7 +14,7 @@ import java.util.List;
* com.tencent.wework.Finance
*
* @author Wang_Wong
* @date 2022-01-14
* created on 2022-01-14
*/
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
*
* @author <a href="https://gitee.com/Wang_Wong/">Wang_Wong</a>
* @date 2022-04-06
* created on 2022-04-06
*/
public interface WxCpOaAgentService {

View File

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

View File

@ -9,7 +9,7 @@ import java.util.List;
* 企业微信会议室接口.
*
* @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 {
/**

View File

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

View File

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

View File

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

View File

@ -16,7 +16,7 @@ import java.util.List;
* 仅复学码应用可以调用
*
* @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 {

View File

@ -13,7 +13,7 @@ import java.util.List;
* https://developer.work.weixin.qq.com/document/path/91638
*
* @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 {

View File

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

View File

@ -13,7 +13,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.WorkBench.WORKBENC
/**
* @author songshiyu
* @date : create in 11:24 2020/9/28
* created on : create in 11:24 2020/9/28
* @description: 工作台自定义展示实现
*/
@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>
* @date 2022/4/21
* created on 2022/4/21
**/
@RequiredArgsConstructor
public class WxCpExportServiceImpl implements WxCpExportService {

View File

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

View File

@ -36,7 +36,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Kf.*;
* 微信客服接口-服务实现
*
* @author Fu
* @date 2022/1/19 19:41
* created on 2022/1/19 19:41
*/
@RequiredArgsConstructor
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
*
* @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date 2021-12-21
* created on 2021-12-21
*/
@Slf4j
@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>
* @date 2020-08-30
* created on 2020-08-30
*/
@RequiredArgsConstructor
public class WxCpMessageServiceImpl implements WxCpMessageService {

View File

@ -28,7 +28,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.MsgAudit.*;
* 会话内容存档接口实现类.
*
* @author Wang_Wong
* @date 2022-01-17
* created on 2022-01-17
*/
@Slf4j
@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>
* @date 2022-04-06
* created on 2022-04-06
*/
@Slf4j
@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>
* @date 2020-09-20
* created on 2020-09-20
*/
@RequiredArgsConstructor
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>
* @date 2020-12-25
* created on 2020-12-25
*/
@Slf4j
@RequiredArgsConstructor

View File

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

View File

@ -18,7 +18,7 @@ import static me.chanjar.weixin.cp.constant.WxCpApiPathConsts.Oa.*;
* 企业微信微盘接口实现类.
*
* @author Wang_Wong
* @date 2022-04-22
* created on 2022-04-22
*/
@Slf4j
@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>
* @date: 2022/5/31 9:16
* created on : 2022/5/31 9:16
*/
@Slf4j
@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
*
* @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date: 2022/6/1 14:05
* created on : 2022/6/1 14:05
*/
@Slf4j
@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
*
* @author <a href="https://github.com/0katekate0">Wang_Wong</a>
* @date: 2022/6/18 9:10
* created on : 2022/6/18 9:10
*/
@Slf4j
@RequiredArgsConstructor

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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