🎨 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

@@ -10,7 +10,7 @@ import cn.binarywang.wx.miniapp.api.WxMaService;
* </pre>
*
* @author Hipple
* @date 2019/01/23
* created on 2019/01/23
* @deprecated 2021-06-23 本接口原有方法并非仅快速创建小程序的专用接口,普通小程序授权到第三方平台皆可使用,所以请使用 {@link WxOpenMaBasicService} 类替代。获取方法: WxOpenComponentService.getWxMaServiceByAppid(maApppId).getBasicService()
*/
@Deprecated

View File

@@ -18,7 +18,7 @@ import java.util.Map;
* </pre>
*
* @author yqx
* @date 2018 /9/12
* created on 2018 /9/12
*/
public interface WxOpenMaService extends WxMaService {
/**

View File

@@ -5,7 +5,7 @@ import org.apache.commons.lang3.StringUtils;
/**
* @author yangyidian
* @date 2020/01/09
* created on 2020/01/09
**/
public abstract class AbstractWxOpenInRedisConfigStorage extends WxOpenInMemoryConfigStorage {
protected static final String COMPONENT_VERIFY_TICKET_KEY = "wechat_component_verify_ticket:";

View File

@@ -17,7 +17,7 @@ import me.chanjar.weixin.common.redis.WxRedisOps;
* </pre>
*
* @author taneg
* @date 2021/05/13 11:12:35
* created on 2021/05/13 11:12:35
*/
public class WxOpenInRedisTemplateConfigStorage extends AbstractWxOpenInRedisConfigStorage {

View File

@@ -10,7 +10,7 @@ import java.util.concurrent.locks.Lock;
/**
* @author yangyidian
* @date 2020/01/06
* created on 2020/01/06
**/
public class WxOpenInRedissonConfigStorage extends AbstractWxOpenInRedisConfigStorage {

View File

@@ -35,7 +35,7 @@ import java.util.Map;
*
* @author <a href="https://github.com/007gzs">007</a>
* @author yqx
* @date 2018-09-12
* created on 2018-09-12
*/
public class WxOpenMaServiceImpl extends WxMaServiceImpl implements WxOpenMaService {
private final WxOpenComponentService wxOpenComponentService;

View File

@@ -20,7 +20,7 @@ import static me.chanjar.weixin.mp.enums.WxMpApiUrl.Other.QRCONNECT_URL;
* oauth2接口实现.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-10-19
* created on 2020-10-19
*/
@AllArgsConstructor
public class WxOpenOAuth2ServiceImpl extends WxOpenServiceImpl implements WxOAuth2Service {

View File

@@ -43,7 +43,7 @@ import java.util.Map;
* </p>
*
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxMaOpenCommitExtInfo implements Serializable {

View File

@@ -6,7 +6,7 @@ import java.io.Serializable;
/**
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxMaOpenNetworkTimeout implements Serializable {

View File

@@ -6,7 +6,7 @@ import java.io.Serializable;
/**
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxMaOpenPage implements Serializable {

View File

@@ -7,7 +7,7 @@ import java.io.Serializable;
/**
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxMaOpenTab implements Serializable {

View File

@@ -13,7 +13,7 @@ import java.util.List;
* tabBar对象
*
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
@NoArgsConstructor

View File

@@ -8,7 +8,7 @@ import java.io.Serializable;
* window对象
*
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxMaOpenWindow implements Serializable {

View File

@@ -11,7 +11,7 @@ import java.util.Set;
* 微信小程序体验二维码参数
*
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxMaQrcodeParam {

View File

@@ -10,7 +10,7 @@ import java.io.Serializable;
* 微信小程序分类目录.
*
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxOpenMaCategory implements Serializable {

View File

@@ -8,7 +8,7 @@ import java.io.Serializable;
* 微信开放平台小程序成员对象
*
* @author yqx
* @date 2018/9/12
* created on 2018/9/12
*/
@Data
public class WxOpenMaMember implements Serializable {

View File

@@ -6,7 +6,7 @@ import lombok.Data;
/**
* @author zxfreedom
* @description
* @date 2019/12/30
* created on 2019/12/30
*/
@Data
public class WxOpenMaPreviewInfo {

View File

@@ -9,7 +9,7 @@ import java.io.Serializable;
* 三方平台提交小程序代码审核
*
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxOpenMaSubmitAudit implements Serializable {

View File

@@ -12,7 +12,7 @@ import java.util.List;
* 微信小程序代码包提交审核(仅供第三方开发者代小程序调用)
*
* @author yqx
* @date 2018/9/13
* created on 2018/9/13
*/
@Data
public class WxOpenMaSubmitAuditMessage implements Serializable {

View File

@@ -12,7 +12,7 @@ import java.util.List;
* 公众号关联的小程序
*
* @author zhongjun
* @date 2022/4/29
* created on 2022/4/29
**/
@Data

View File

@@ -12,7 +12,7 @@ import java.util.List;
* 微信开放平台小程序分类目录列表返回
*
* @author yqx
* @date 2018/9/12
* created on 2018/9/12
*/
@Data
@EqualsAndHashCode(callSuper = true)

View File

@@ -10,7 +10,7 @@ import java.util.List;
* 微信开放平台小程序域名设置返回对象.
*
* @author yqx
* @date 2018/9/12
* created on 2018/9/12
*/
@Data
@EqualsAndHashCode(callSuper = true)

View File

@@ -11,7 +11,7 @@ import java.util.List;
* 微信开放平台小程序第三方提交代码的页面配置列表.
*
* @author yqx
* @date 2018/9/12
* created on 2018/9/12
*/
@Data
@EqualsAndHashCode(callSuper = true)

View File

@@ -8,7 +8,7 @@ import lombok.EqualsAndHashCode;
* .
*
* @author yqx
* @date 2018/10/3
* created on 2018/10/3
*/
@Data
@EqualsAndHashCode(callSuper = true)

View File

@@ -8,7 +8,7 @@ import lombok.EqualsAndHashCode;
* 微信开放平台小程序发布代码审核结果.
*
* @author yqx
* @date 2018/9/12
* created on 2018/9/12
*/
@Data
@EqualsAndHashCode(callSuper = true)

View File

@@ -12,7 +12,7 @@ import me.chanjar.weixin.open.util.json.WxOpenGsonBuilder;
* 微信开放平台小程序体验者列表返回.
*
* @author yqx
* @date 2018/9/12
* created on 2018/9/12
*/
@Data
@EqualsAndHashCode(callSuper = false)

View File

@@ -11,7 +11,7 @@ import java.io.Serializable;
* 基础的微信开放平台请求结果.
*
* @author yqx
* @date 2018/10/1
* created on 2018/10/1
*/
@Data
public class WxOpenResult implements Serializable {

View File

@@ -12,7 +12,7 @@ import java.util.List;
* 小程序版本信息
*
* @author cocoa
* @date 20220727
* created on 20220727
*/
@Data
@EqualsAndHashCode(callSuper = true)

View File

@@ -25,7 +25,7 @@ import java.util.UUID;
/**
* @author yqx
* @date 2018-09-13
* created on 2018-09-13
*/
public class MaQrCodeApacheHttpRequestExecutor extends MaQrCodeRequestExecutor<CloseableHttpClient, HttpHost> {
public MaQrCodeApacheHttpRequestExecutor(RequestHttp requestHttp) {

View File

@@ -24,7 +24,7 @@ import java.util.UUID;
/**
* @author yqx
* @date 2018-09-13
* created on 2018-09-13
*/
public class MaQrCodeJoddHttpRequestExecutor extends MaQrCodeRequestExecutor<HttpConnectionProvider, ProxyInfo> {
public MaQrCodeJoddHttpRequestExecutor(RequestHttp requestHttp) {

View File

@@ -20,7 +20,7 @@ import java.util.UUID;
/**
* @author yqx
* @date 2018-09-13
* created on 2018-09-13
*/
public class MaQrCodeOkhttpRequestExecutor extends MaQrCodeRequestExecutor<OkHttpClient, OkHttpProxyInfo> {
public MaQrCodeOkhttpRequestExecutor(RequestHttp requestHttp) {

View File

@@ -15,7 +15,7 @@ import me.chanjar.weixin.open.bean.ma.WxMaQrcodeParam;
* 获得小程序体验QrCode图片 请求执行器.
*
* @author yqx
* @date 2018-09-13
* created on 2018-09-13
*/
public abstract class MaQrCodeRequestExecutor<H, P> implements RequestExecutor<File, WxMaQrcodeParam> {
protected RequestHttp<H, P> requestHttp;

View File

@@ -19,7 +19,7 @@ import java.util.Arrays;
* 单元测试类.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-06-06
* created on 2020-06-06
*/
@Guice(modules = ApiTestModule.class)
public class WxOpenComponentServiceImplTest {

View File

@@ -4,7 +4,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 WxOpenFastMaServiceImplTest {

View File

@@ -4,7 +4,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 WxOpenMaServiceImplTest {

View File

@@ -9,7 +9,7 @@ import org.testng.annotations.Test;
* 单元测试.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-10-19
* created on 2020-10-19
*/
public class WxOpenOAuth2ServiceImplTest {
private final WxOpenOAuth2ServiceImpl service = new WxOpenOAuth2ServiceImpl("123", "");

View File

@@ -6,7 +6,7 @@ import org.testng.annotations.Test;
/**
* @title: 获取授权帐号详情 信息反序列化测试
* @author: trifolium
* @date: 2022/6/7
* created on : 2022/6/7
* @modified :
*/
public class WxOpenAuthorizerInfoResultTest {