From 1903e127175acfe4591b98793bf290c6aafa4b54 Mon Sep 17 00:00:00 2001 From: xiafang Date: Thu, 8 Aug 2024 18:03:10 +0800 Subject: [PATCH 01/13] =?UTF-8?q?=E8=A1=A5=E5=85=85state=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #IAIHKS --- .../cn/felord/domain/externalcontact/GroupChatMember.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatMember.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatMember.java index f4bc8b6c..ad688e8a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatMember.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatMember.java @@ -69,4 +69,9 @@ public class GroupChatMember { * 如果是企业微信联系人,则返回其设置对外展示的别名或实名 */ private String name; + /** + * 企业自定义的state参数,用于区分不同的入群渠道。不超过30个UTF-8字符 + * 如果有设置此参数,在调用获取客户群详情接口时会返回每个群成员对应的该参数值 + */ + private String state; } From e60c38725e87d14b6bcd3dc538bf7c15b0c63100 Mon Sep 17 00:00:00 2001 From: xiafang Date: Fri, 9 Aug 2024 10:46:51 +0800 Subject: [PATCH 02/13] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AE=A2=E6=9C=8D?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E5=8F=8D=E5=BA=8F=E5=88=97=E5=8C=96=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #IAFGAP --- .../src/main/java/cn/felord/domain/approval/LocationValue.java | 3 ++- .../src/main/java/cn/felord/domain/approval/TipsConfig.java | 3 ++- .../src/main/java/cn/felord/domain/callcenter/KfMessage.java | 2 -- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/LocationValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/LocationValue.java index c6e2682e..47d811c9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/LocationValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/LocationValue.java @@ -26,7 +26,7 @@ * 位置组件 * * @author dax - * @since 2024/5/27 + * @since 2024 /5/27 */ @ToString @Getter @@ -52,6 +52,7 @@ public class LocationValue implements ContentDataValue { * @param title the title * @param address the address * @param time the time + * @return the location value */ public static LocationValue from(String latitude, String longitude, diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TipsConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TipsConfig.java index e829f175..09458d63 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TipsConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TipsConfig.java @@ -26,7 +26,7 @@ * The type Tips config. * * @author dax - * @since 2024/1/24 + * @since 2024 /1/24 */ @ToString @Getter @@ -47,6 +47,7 @@ public class TipsConfig implements ControlConfig { * Instantiates a new Tips config. * * @param tipsContent the tips content + * @return the tips config * @see TipsContent#zhCN(List) * @see TipsContent#from(String, List) */ diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessage.java index 295c3fa5..35be4727 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessage.java @@ -15,7 +15,6 @@ package cn.felord.domain.callcenter; -import cn.felord.domain.externalcontact.VideoMsgAttachment; import cn.felord.enumeration.KfMsgOrigin; import cn.felord.enumeration.KfMsgType; import com.fasterxml.jackson.annotation.JsonCreator; @@ -47,7 +46,6 @@ @JsonSubTypes.Type(value = LinkKfMessage.class, name = "link"), @JsonSubTypes.Type(value = BusinessCardKfMessage.class, name = "business_card"), @JsonSubTypes.Type(value = MiniprogramKfMessage.class, name = "miniprogram"), - @JsonSubTypes.Type(value = VideoMsgAttachment.class, name = "video"), @JsonSubTypes.Type(value = MenuKfMessage.class, name = "msgmenu"), @JsonSubTypes.Type(value = ChannelsShopProductKfMessage.class, name = "channels_shop_product"), @JsonSubTypes.Type(value = ChannelsShopOrderKfMessage.class, name = "channels_shop_order"), From 41e9281fcc05dad65c48b1aec735ff223d61acb4 Mon Sep 17 00:00:00 2001 From: xiafang Date: Fri, 9 Aug 2024 10:49:57 +0800 Subject: [PATCH 03/13] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=86=85=E5=AE=B9API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/felord/reactive/api/DocApi.java | 33 ++-- .../wedoc/doc/DocBatchUpdateRequest.java | 45 +++++ .../domain/wedoc/doc/DocDeleteContent.java | 40 ++++ .../domain/wedoc/doc/DocInsertImage.java | 68 +++++++ .../domain/wedoc/doc/DocInsertLocation.java | 37 ++++ .../domain/wedoc/doc/DocInsertTable.java | 57 ++++++ .../domain/wedoc/doc/DocInsertText.java | 45 +++++ .../felord/domain/wedoc/doc/DocLocation.java | 28 +++ .../cn/felord/domain/wedoc/doc/DocRange.java | 34 ++++ .../domain/wedoc/doc/DocReplaceText.java | 38 ++++ .../domain/wedoc/doc/DocTextProperty.java | 40 ++++ .../wedoc/doc/DocUpdateTextProperty.java | 43 ++++ .../domain/wedoc/doc/UpdateRequest.java | 184 ++++++++++++++++++ .../src/main/java/cn/felord/api/DocApi.java | 43 ++-- .../main/java/cn/felord/api/WeDriveApi.java | 7 +- 15 files changed, 717 insertions(+), 25 deletions(-) create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocDeleteContent.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertImage.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertLocation.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertTable.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertText.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocLocation.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocRange.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocReplaceText.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocTextProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateTextProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRequest.java diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DocApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DocApi.java index e2f123d8..5ac996b5 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DocApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DocApi.java @@ -15,6 +15,7 @@ package cn.felord.reactive.api; +import cn.felord.WeComException; import cn.felord.domain.GenericResponse; import cn.felord.domain.WeComResponse; import cn.felord.domain.common.FormId; @@ -27,7 +28,7 @@ * 文档-管理文档 * * @author dax - * @since 2024/7/19 + * @since 2024 /7/19 */ public interface DocApi { @@ -45,20 +46,11 @@ public interface DocApi { /** * 重命名文档 * - * @param docId the doc id - * @return the we com response - */ - @POST("wedoc/rename_doc") - Single renameDoc(@Body DocId docId); - - /** - * 重命名收集表 - * - * @param docId the doc id + * @param request the request * @return the we com response */ @POST("wedoc/rename_doc") - Single renameDoc(@Body FormId docId); + Single renameDoc(@Body RenameDocRequest request); /** * 删除文档 @@ -101,6 +93,23 @@ public interface DocApi { @POST("wedoc/doc_share") Single> docShare(@Body DocId docId); + /** + * 编辑文档内容 + *

+ * 该接口可以对一个在线文档批量执行多个更新操作。 + * + *

    + *
  • 批量更新请求,若其中有一个操作报错则全部更新操作不生效。
  • + *
  • 单次批量更新操作数量不大于30。
  • + *
+ * + * @param request the request + * @return the we com response + * @throws WeComException the we com exception + */ + @POST("wedoc/document/batch_update") + Single batchUpdateDocument(@Body DocBatchUpdateRequest request); + /** * 获取文档权限信息 * diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java new file mode 100644 index 00000000..c794c240 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java @@ -0,0 +1,45 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +import java.util.Set; + +/** + * The type Doc batch update request. + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocBatchUpdateRequest { + private final String docid; + private final Integer verison; + private final Set requests; + + /** + * Instantiates a new Doc batch update request. + * + * @param requests the requests + * @param docid the docid + * @param version the version + */ + public DocBatchUpdateRequest(Set requests, String docid, int version) { + this.docid = docid; + this.verison = version; + this.requests = requests; + } + + /** + * Instantiates a new Doc batch update request. + * + * @param requests the requests + * @param docid the docid + */ + public DocBatchUpdateRequest(Set requests, String docid) { + this.requests = requests; + this.docid = docid; + this.verison = null; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocDeleteContent.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocDeleteContent.java new file mode 100644 index 00000000..7a911b27 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocDeleteContent.java @@ -0,0 +1,40 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 删除指定位置内容 + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocDeleteContent { + + /** + * 要删除的范围 + */ + private final DocRange range; + + + /** + * Instantiates a new Doc delete content. + * + * @param startIndex the start index + * @param length the length + */ + DocDeleteContent(int startIndex, int length) { + this(new DocRange(startIndex, length)); + } + + /** + * Instantiates a new Doc delete content. + * + * @param range the range + */ + DocDeleteContent(DocRange range) { + this.range = range; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertImage.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertImage.java new file mode 100644 index 00000000..331958a6 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertImage.java @@ -0,0 +1,68 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 插入图片 + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocInsertImage { + /** + * 文本 + */ + private final String imageId; + /** + * 位置 + */ + private final DocLocation location; + /** + * 图片的宽,单位是像素(px), 不传默认为图片原始宽度 + */ + private final Integer width; + /** + * 图片的高, 单位是像素(px),不传默认为图片原始高度 + */ + private final Integer height; + + /** + * Instantiates a new Doc insert text. + * + * @param imageId the image id + * @param index the index + * @param width the width + * @param height the height + */ + DocInsertImage(String imageId, int index, int width, int height) { + this(imageId, new DocLocation(index), width, height); + } + + /** + * Instantiates a new Doc insert image. + * + * @param imageId the image id + * @param index the index + */ + DocInsertImage(String imageId, int index) { + this(imageId, new DocLocation(index), null, null); + } + + /** + * Instantiates a new Doc insert text. + * + * @param imageId the image id + * @param location the location + * @param width the width + * @param height the height + */ + DocInsertImage(String imageId, DocLocation location, Integer width, Integer height) { + this.imageId = imageId; + this.location = location; + this.width = null; + this.height = null; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertLocation.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertLocation.java new file mode 100644 index 00000000..e5541e82 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertLocation.java @@ -0,0 +1,37 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 指定位置插入段落或者分页符 + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocInsertLocation { + /** + * 位置 + */ + private final DocLocation location; + + /** + * Instantiates a new Doc insert page break. + * + * @param index the index + */ + DocInsertLocation(int index) { + this(new DocLocation(index)); + } + + /** + * Instantiates a new Doc insert page break. + * + * @param location the location + */ + DocInsertLocation(DocLocation location) { + this.location = location; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertTable.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertTable.java new file mode 100644 index 00000000..b77cf416 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertTable.java @@ -0,0 +1,57 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 在指定位置插入表格,表格大小限制: + * + *
    + *
  1. 行数不大于100
  2. + *
  3. 列数不大于60
  4. + *
  5. 单元格总数不大于1000
  6. + *
+ * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocInsertTable { + /** + * 表格行数 + */ + private final int rows; + /** + * 表格列数 + */ + private final int cols; + /** + * 位置 + */ + private final DocLocation location; + + /** + * Instantiates a new Doc insert table. + * + * @param index the index + * @param rows the rows + * @param cols the cols + */ + DocInsertTable(int index, int rows, int cols) { + this(new DocLocation(index), rows, cols); + } + + /** + * Instantiates a new Doc insert table. + * + * @param location the location + * @param cols the cols + * @param rows the rows + */ + DocInsertTable(DocLocation location, int cols, int rows) { + this.location = location; + this.cols = cols; + this.rows = rows; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertText.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertText.java new file mode 100644 index 00000000..4e3c95fb --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertText.java @@ -0,0 +1,45 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 插入文本 + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocInsertText { + /** + * 文本 + */ + private final String text; + /** + * 位置 + */ + private final DocLocation location; + + + /** + * Instantiates a new Doc insert text. + * + * @param text the text + * @param index the index + */ + DocInsertText(String text, int index) { + this(text, new DocLocation(index)); + } + + /** + * Instantiates a new Doc insert text. + * + * @param text the text + * @param location the location + */ + DocInsertText(String text, DocLocation location) { + this.text = text; + this.location = location; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocLocation.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocLocation.java new file mode 100644 index 00000000..0323e0c4 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocLocation.java @@ -0,0 +1,28 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 标准文档中的一个位置 + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocLocation { + /** + * 位置 + */ + private final int index; + + /** + * Instantiates a new Doc location. + * + * @param index the index + */ + DocLocation(int index) { + this.index = index; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocRange.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocRange.java new file mode 100644 index 00000000..70595bed --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocRange.java @@ -0,0 +1,34 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 表示从start_index开始的一段范围 + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocRange { + /** + * 起始位置,从0开始 + */ + private final int startIndex; + /** + * 长度 + */ + private final int length; + + /** + * Instantiates a new Doc range. + * + * @param startIndex the start index + * @param length the length + */ + DocRange(int startIndex, int length) { + this.startIndex = startIndex; + this.length = length; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocReplaceText.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocReplaceText.java new file mode 100644 index 00000000..d2e5f562 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocReplaceText.java @@ -0,0 +1,38 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +import java.util.Set; + +/** + * 文本替换 + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocReplaceText { + + /** + * 要替换的文本 + */ + private final String text; + + /** + * 要替换的文档范围,可同时替换多个位置的文本, ranges个数不超过10。 + */ + private final Set ranges; + + /** + * Instantiates a new Doc replace text. + * + * @param text the text + * @param ranges the ranges + */ + DocReplaceText(String text, Set ranges) { + this.text = text; + this.ranges = ranges; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocTextProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocTextProperty.java new file mode 100644 index 00000000..9df42fac --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocTextProperty.java @@ -0,0 +1,40 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 文本属性 + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocTextProperty { + /** + * 是否加粗 + */ + private final boolean blod; + /** + * 文字颜色,十六进制RRGGBB格式 + */ + private final String color; + /** + * 文字的背景颜色,十六进制RRGGBB 格式 + */ + private final String backgroundColor; + + /** + * Instantiates a new Doc text property. + * + * @param bold the blod + * @param color the color + * @param backgroundColor the background color + */ + DocTextProperty(boolean bold, String color, String backgroundColor) { + this.blod = bold; + this.color = color; + this.backgroundColor = backgroundColor; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateTextProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateTextProperty.java new file mode 100644 index 00000000..d3777af4 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateTextProperty.java @@ -0,0 +1,43 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +import java.util.Set; + +/** + * The type Doc update text property. + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class DocUpdateTextProperty { + private final DocTextProperty textProperty; + private final Set ranges; + + + /** + * Instantiates a new Doc update text property. + * + * @param bold the bold + * @param color the color + * @param backgroundColor the background color + * @param ranges the ranges + */ + DocUpdateTextProperty(boolean bold, String color, String backgroundColor, Set ranges) { + this(new DocTextProperty(bold, color, backgroundColor), ranges); + } + + /** + * Instantiates a new Doc update text property. + * + * @param textProperty the text property + * @param ranges the ranges + */ + DocUpdateTextProperty(DocTextProperty textProperty, Set ranges) { + this.textProperty = textProperty; + this.ranges = ranges; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRequest.java new file mode 100644 index 00000000..45841acc --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRequest.java @@ -0,0 +1,184 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +import java.util.Set; + +/** + * The type Update request. + * + * @author dax + * @since 2024 /8/9 + */ +@ToString +@Getter +public class UpdateRequest { + /** + * 替换指定位置文本内容 + */ + private DocReplaceText replaceText; + /** + * 在指定位置插入文本内容 + */ + private DocInsertText insertText; + /** + * 删除指定位置内容 + */ + private DocDeleteContent deleteContent; + /** + * 在指定位置插入图片 + */ + private DocInsertImage insertImage; + /** + * 在指定位置插入分页符 + */ + private DocInsertLocation insertPageBreak; + /** + * 在指定位置插入表格 + */ + private DocInsertTable insertTable; + /** + * 在指定位置插入段落 + */ + private DocInsertLocation insertParagraph; + /** + * 更新指定位置文本属性 + */ + private DocUpdateTextProperty updateTextProperty; + + private UpdateRequest() { + } + + /** + * 替换指定位置文本内容 + * + * @param text the text + * @param ranges the ranges + * @return the update request + */ + public static UpdateRequest replaceText(String text, Set ranges) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.replaceText = new DocReplaceText(text, ranges); + return updateRequest; + } + + /** + * 在指定位置插入文本内容 + * + * @param text the text + * @param index the index + * @return the update request + */ + public static UpdateRequest insertText(String text, int index) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.insertText = new DocInsertText(text, index); + return updateRequest; + } + + /** + * 删除指定位置内容 + * + * @param startIndex the start index + * @param length the length + * @return the update request + */ + public static UpdateRequest deleteContent(int startIndex, int length) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.deleteContent = new DocDeleteContent(startIndex, length); + return updateRequest; + } + + /** + * 在指定位置插入图片 + * + * @param imageId the image id + * @param index the index + * @param width the width + * @param height the height + * @return the update request + */ + public static UpdateRequest insertImage(String imageId, int index, int width, int height) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.insertImage = new DocInsertImage(imageId, index, width, height); + return updateRequest; + } + + /** + * 在指定位置插入图片 + * + * @param imageId the image id + * @param index the index + * @return the update request + */ + public static UpdateRequest insertImage(String imageId, int index) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.insertImage = new DocInsertImage(imageId, index); + return updateRequest; + } + + /** + * 在指定位置插入图片 + * + * @param insertImage the insert image + * @return the update request + */ + public static UpdateRequest insertImage(DocInsertImage insertImage) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.insertImage = insertImage; + return updateRequest; + } + + /** + * 在指定位置插入分页符 + * + * @param index the index + * @return the update request + */ + public static UpdateRequest insertPageBreak(int index) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.insertPageBreak = new DocInsertLocation(index); + return updateRequest; + } + + /** + * 在指定位置插入表格 + * + * @param index the index + * @param rows the rows + * @param cols the cols + * @return the update request + */ + public static UpdateRequest insertTable(int index, int rows, int cols) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.insertTable = new DocInsertTable(index, rows, cols); + return updateRequest; + } + + /** + * 在指定位置插入段落 + * + * @param index the index + * @return the update request + */ + public static UpdateRequest insertParagraph(int index) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.insertParagraph = new DocInsertLocation(index); + return updateRequest; + } + + /** + * 更新指定位置文本属性 + * + * @param bold the bold + * @param color the color + * @param backgroundColor the background color + * @param ranges the ranges + * @return the update request + */ + public static UpdateRequest updateTextProperty(boolean bold, String color, String backgroundColor, Set ranges) { + UpdateRequest updateRequest = new UpdateRequest(); + updateRequest.updateTextProperty = new DocUpdateTextProperty(bold, color, backgroundColor, ranges); + return updateRequest; + } +} diff --git a/wecom-sdk/src/main/java/cn/felord/api/DocApi.java b/wecom-sdk/src/main/java/cn/felord/api/DocApi.java index bf5f107d..a4626ecc 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/DocApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/DocApi.java @@ -27,7 +27,7 @@ * 文档-管理文档 * * @author dax - * @since 2024/7/19 + * @since 2024 /7/19 */ public interface DocApi { @@ -38,6 +38,7 @@ public interface DocApi { * * @param request the request * @return the create doc response + * @throws WeComException the we com exception */ @POST("wedoc/create_doc") CreateDocResponse createDoc(@Body CreateDocRequest request) throws WeComException; @@ -45,26 +46,19 @@ public interface DocApi { /** * 重命名文档 * - * @param docId the doc id - * @return the we com response - */ - @POST("wedoc/rename_doc") - WeComResponse renameDoc(@Body DocId docId) throws WeComException; - - /** - * 重命名收集表 - * - * @param docId the doc id + * @param request the request * @return the we com response + * @throws WeComException the we com exception */ @POST("wedoc/rename_doc") - WeComResponse renameDoc(@Body FormId docId) throws WeComException; + WeComResponse renameDoc(@Body RenameDocRequest request) throws WeComException; /** * 删除文档 * * @param docId the doc id * @return the we com response + * @throws WeComException the we com exception */ @POST("wedoc/del_doc") WeComResponse delDoc(@Body DocId docId) throws WeComException; @@ -74,6 +68,7 @@ public interface DocApi { * * @param formId the form id * @return the we com response + * @throws WeComException the we com exception */ @POST("wedoc/del_doc") WeComResponse delDoc(@Body FormId formId) throws WeComException; @@ -88,6 +83,7 @@ public interface DocApi { * * @param docId the doc id * @return the doc base info + * @throws WeComException the we com exception */ @POST("wedoc/get_doc_base_info") GenericResponse getDocBaseInfo(@Body DocId docId) throws WeComException; @@ -97,15 +93,34 @@ public interface DocApi { * * @param docId the doc id * @return the we com response + * @throws WeComException the we com exception */ @POST("wedoc/doc_share") GenericResponse docShare(@Body DocId docId) throws WeComException; + /** + * 编辑文档内容 + *

+ * 该接口可以对一个在线文档批量执行多个更新操作。 + * + *

    + *
  • 批量更新请求,若其中有一个操作报错则全部更新操作不生效。
  • + *
  • 单次批量更新操作数量不大于30。
  • + *
+ * + * @param request the request + * @return the we com response + * @throws WeComException the we com exception + */ + @POST("wedoc/document/batch_update") + WeComResponse batchUpdateDocument(@Body DocBatchUpdateRequest request) throws WeComException; + /** * 分享收集表 * * @param formId the form id * @return the we com response + * @throws WeComException the we com exception */ @POST("wedoc/doc_share") GenericResponse docShare(@Body FormId formId) throws WeComException; @@ -115,6 +130,7 @@ public interface DocApi { * * @param docId the doc id * @return the doc auth response + * @throws WeComException the we com exception */ @POST("wedoc/doc_get_auth") DocAuthResponse docGetAuth(@Body DocId docId) throws WeComException; @@ -124,6 +140,7 @@ public interface DocApi { * * @param request the request * @return the we com response + * @throws WeComException the we com exception */ @POST("wedoc/mod_doc_join_rule") WeComResponse modDocJoinRule(@Body AccessRuleUpdateRequest request) throws WeComException; @@ -133,6 +150,7 @@ public interface DocApi { * * @param request the request * @return the we com response + * @throws WeComException the we com exception */ @POST("wedoc/mod_doc_member") WeComResponse modDocMember(@Body FileMemberUpdateRequest request) throws WeComException; @@ -142,6 +160,7 @@ public interface DocApi { * * @param setting the setting * @return the we com response + * @throws WeComException the we com exception */ @POST("wedoc/mod_doc_safty_setting") WeComResponse modDocSaftySetting(@Body DocSecuritySetting setting) throws WeComException; diff --git a/wecom-sdk/src/main/java/cn/felord/api/WeDriveApi.java b/wecom-sdk/src/main/java/cn/felord/api/WeDriveApi.java index 3e3bf259..235da672 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/WeDriveApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/WeDriveApi.java @@ -19,11 +19,16 @@ * 微盘API * * @author dax - * @since 2023/3/17 15:01 + * @since 2023 /3/17 15:01 */ public class WeDriveApi { private final WorkWeChatApiClient workWeChatApiClient; + /** + * Instantiates a new We drive api. + * + * @param workWeChatApiClient the work we chat api client + */ WeDriveApi(WorkWeChatApiClient workWeChatApiClient) { this.workWeChatApiClient = workWeChatApiClient; } From 558d52b6ea553669c937abf2b967df9057c15493 Mon Sep 17 00:00:00 2001 From: xiafang Date: Fri, 9 Aug 2024 11:09:33 +0800 Subject: [PATCH 04/13] =?UTF-8?q?=E4=BE=9D=E8=B5=96=E5=8D=87=E7=BA=A7?= =?UTF-8?q?=EF=BC=9A=20retrofit=20=E5=8D=87=E7=BA=A7=E8=87=B3=202.11.0=20j?= =?UTF-8?q?ose=20=E5=8D=87=E7=BA=A7=E8=87=B3=209.40=20lombok=20=E5=8D=87?= =?UTF-8?q?=E7=BA=A7=E8=87=B3=201.18.34?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 26d73bc8..24ba5ee6 100644 --- a/pom.xml +++ b/pom.xml @@ -106,12 +106,12 @@ UTF-8 UTF-8 1.8 - 2.9.0 + 2.11.0 4.12.0 2.15.2 1.4.20 - 9.36 - 1.18.30 + 9.40 + 1.18.34 From b30aa2eafa785de8fdfce68e31ff99abec01adc5 Mon Sep 17 00:00:00 2001 From: xiafang Date: Fri, 16 Aug 2024 15:28:14 +0800 Subject: [PATCH 05/13] =?UTF-8?q?=E7=BC=96=E8=BE=91=E6=96=87=E6=A1=A3-?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E8=A1=A8=E6=A0=BC=E5=86=85=E5=AE=B9=E5=AE=9E?= =?UTF-8?q?=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +-- pom.xml | 2 +- rx-wecom-sdk/pom.xml | 2 +- samples/spring-boot-sample/pom.xml | 2 +- wecom-common/pom.xml | 2 +- .../cn/felord/retrofit/WecomUserAgent.java | 2 +- wecom-objects/pom.xml | 2 +- .../domain/wedoc/doc/AddSheetRequest.java | 40 +++++++++ .../domain/wedoc/doc/AddSheetResponse.java | 28 ++++++ .../cn/felord/domain/wedoc/doc/CellData.java | 29 ++++++ .../felord/domain/wedoc/doc/CellFormat.java | 50 +++++++++++ .../cn/felord/domain/wedoc/doc/CellLink.java | 23 +++++ .../cn/felord/domain/wedoc/doc/CellValue.java | 63 +++++++++++++ .../cn/felord/domain/wedoc/doc/Color.java | 40 +++++++++ .../domain/wedoc/doc/CreateDocRequest.java | 17 ++++ .../wedoc/doc/DeleteDimensionRequest.java | 56 ++++++++++++ .../wedoc/doc/DeleteDimensionResponse.java | 28 ++++++ .../wedoc/doc/DocBatchUpdateRequest.java | 6 +- ...dateRequest.java => DocUpdateRequest.java} | 44 ++++----- .../cn/felord/domain/wedoc/doc/GridData.java | 38 ++++++++ .../cn/felord/domain/wedoc/doc/RowData.java | 51 +++++++++++ .../wedoc/doc/SheetBatchUpdateRequest.java | 15 ++++ .../wedoc/doc/SheetBatchUpdateResponse.java | 30 +++++++ .../cn/felord/domain/wedoc/doc/SheetId.java | 28 ++++++ .../domain/wedoc/doc/SheetProperties.java | 40 +++++++++ .../domain/wedoc/doc/SheetUpdateRequest.java | 89 +++++++++++++++++++ .../domain/wedoc/doc/SheetUpdateResponse.java | 53 +++++++++++ .../felord/domain/wedoc/doc/TextFormat.java | 65 ++++++++++++++ .../domain/wedoc/doc/UpdateRangeRequest.java | 27 ++++++ .../domain/wedoc/doc/UpdateRangeResponse.java | 28 ++++++ .../java/cn/felord/enumeration/Dimension.java | 18 ++++ .../felord/enumeration/SheetUpdateEvent.java | 15 ++++ wecom-sdk/pom.xml | 2 +- .../src/main/java/cn/felord/api/DocApi.java | 30 ++++++- wemp-objects/pom.xml | 2 +- wemp-sdk/pom.xml | 2 +- wepay-objects/pom.xml | 2 +- wepay-sdk/pom.xml | 2 +- 38 files changed, 941 insertions(+), 42 deletions(-) create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetResponse.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellData.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellFormat.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellLink.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellValue.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Color.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionResponse.java rename wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/{UpdateRequest.java => DocUpdateRequest.java} (71%) create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/GridData.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RowData.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateResponse.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetId.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetProperties.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateResponse.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/TextFormat.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeResponse.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/Dimension.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/SheetUpdateEvent.java diff --git a/README.md b/README.md index ba7033c3..20f88296 100644 --- a/README.md +++ b/README.md @@ -96,9 +96,9 @@ void webHooks()throws IOException{ ## ✍️技术栈 -- Retrofit2,支持最高版本号`2.9.0` +- Retrofit2,支持最高版本号`2.11.0` - OkHttp4,支持最高版本号`4.12.0` -- Rxjava3,支持最高版本号`3.0.0` +- Rxjava3,支持最高版本号`3.1.8` - Jackson2,支持最高版本号`2.15.2` - XStream,支持最高版本号`1.4.20` @@ -111,7 +111,7 @@ void webHooks()throws IOException{ cn.felord wecom-sdk - 1.2.8 + 1.2.9 ``` @@ -122,7 +122,7 @@ void webHooks()throws IOException{ cn.felord rx-wecom-sdk - 1.2.8 + 1.2.9 ``` @@ -134,7 +134,7 @@ void webHooks()throws IOException{ cn.felord wecom-sdk - 1.2.8 + 1.2.9 com.squareup.okhttp3 diff --git a/pom.xml b/pom.xml index 24ba5ee6..72dcbca1 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 pom wecom diff --git a/rx-wecom-sdk/pom.xml b/rx-wecom-sdk/pom.xml index 1d2e1b18..7e551784 100644 --- a/rx-wecom-sdk/pom.xml +++ b/rx-wecom-sdk/pom.xml @@ -22,7 +22,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 rx-wecom-sdk jar diff --git a/samples/spring-boot-sample/pom.xml b/samples/spring-boot-sample/pom.xml index 1f4b9f9b..b4eb98e7 100644 --- a/samples/spring-boot-sample/pom.xml +++ b/samples/spring-boot-sample/pom.xml @@ -39,7 +39,7 @@ cn.felord wecom-sdk - 1.2.8 + 1.2.9 net.sf.ehcache diff --git a/wecom-common/pom.xml b/wecom-common/pom.xml index bc83328f..85180927 100644 --- a/wecom-common/pom.xml +++ b/wecom-common/pom.xml @@ -21,7 +21,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 wecom-common diff --git a/wecom-common/src/main/java/cn/felord/retrofit/WecomUserAgent.java b/wecom-common/src/main/java/cn/felord/retrofit/WecomUserAgent.java index cd5e5e82..6f86a9b4 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/WecomUserAgent.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/WecomUserAgent.java @@ -27,7 +27,7 @@ public final class WecomUserAgent { /** * 版本号 */ - public static final String VERSION = "1.2.8"; + public static final String VERSION = "1.2.9"; /** * UserAgent */ diff --git a/wecom-objects/pom.xml b/wecom-objects/pom.xml index b5cdb8ec..6ccdce23 100644 --- a/wecom-objects/pom.xml +++ b/wecom-objects/pom.xml @@ -21,7 +21,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 wecom-objects jar diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetRequest.java new file mode 100644 index 00000000..f616c9e8 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetRequest.java @@ -0,0 +1,40 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +/** + * 新增工作表 + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class AddSheetRequest { + /** + * 工作表名称 + */ + private final String sheetName; + /** + * 新增工作表的初始行数 + */ + private final Integer rowCount; + /** + * 新增工作表的初始列数 + */ + private final Integer columnCount; + + /** + * Instantiates a new Add sheet request. + * + * @param sheetName the sheet name + * @param rowCount the row count + * @param columnCount the column count + */ + AddSheetRequest(String sheetName, Integer rowCount, Integer columnCount) { + this.sheetName = sheetName; + this.rowCount = rowCount; + this.columnCount = columnCount; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetResponse.java new file mode 100644 index 00000000..95cef82c --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetResponse.java @@ -0,0 +1,28 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * 新增子表操作的请求响应体结构 + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class AddSheetResponse { + private final SheetProperties properties; + + /** + * Instantiates a new Add sheet response. + * + * @param properties the properties + */ + @JsonCreator + AddSheetResponse(@JsonProperty("properties") SheetProperties properties) { + this.properties = properties; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellData.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellData.java new file mode 100644 index 00000000..0480efc2 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellData.java @@ -0,0 +1,29 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * 单元格的信息 + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class CellData { + private final CellValue cellValue; + private final CellFormat cellFormat; + + /** + * Instantiates a new Cell data. + * + * @param cellValue the cell value + * @param cellFormat the cell format + */ + public CellData(@JsonProperty("cell_value") CellValue cellValue, @JsonProperty("cell_format") CellFormat cellFormat) { + this.cellValue = cellValue; + this.cellFormat = cellFormat; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellFormat.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellFormat.java new file mode 100644 index 00000000..0d3c4e0f --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellFormat.java @@ -0,0 +1,50 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * 单元格的样式信息 + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class CellFormat { + private final TextFormat textFormat; + + /** + * Instantiates a new Cell format. + * + * @param textFormat the text format + */ + @JsonCreator + CellFormat(@JsonProperty("text_format") TextFormat textFormat) { + this.textFormat = textFormat; + } + + /** + * Instantiates a new Cell format. + * + * @param color the color + * @param underline the underline + * @param fontSize the font size + * @param bold the bold + * @param strikethrough the strikethrough + * @param italic the italic + * @param font the font + */ + public CellFormat(Color color, + Boolean underline, + Integer fontSize, + Boolean bold, + Boolean strikethrough, + Boolean italic, + String font) { + this.textFormat = new TextFormat(color, underline, fontSize, bold, strikethrough, italic, font); + } + +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellLink.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellLink.java new file mode 100644 index 00000000..35712b5e --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellLink.java @@ -0,0 +1,23 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * @author dax + * @since 2024/8/16 + */ +@ToString +@Getter +public class CellLink { + private final String text; + private final String url; + + @JsonCreator + CellLink(@JsonProperty("text") String text, @JsonProperty("url") String url) { + this.text = text; + this.url = url; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellValue.java new file mode 100644 index 00000000..b7fb175a --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellValue.java @@ -0,0 +1,63 @@ +package cn.felord.domain.wedoc.doc; + +import cn.felord.utils.StringUtils; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Cell value. + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class CellValue { + private final String text; + private final CellLink link; + + + /** + * Instantiates a new Cell value. + * + * @param text the text + * @param url the url + */ + @JsonCreator + CellValue(@JsonProperty("text") String text, @JsonProperty("url") String url) { + if (StringUtils.hasText(url)) { + this.text = null; + this.link = new CellLink(text, url); + } else { + this.text = text; + this.link = null; + } + } + + /** + * 文本 + * + * @param text the text + * @return the cell value + */ + public static CellValue text(String text) { + return new CellValue(text, null); + } + + /** + * 链接 + * + * @param text the text + * @param url the url + * @return the cell value + */ + public static CellValue link(String text, String url) { + return new CellValue(text, url); + } + + public boolean isLink() { + return link != null; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Color.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Color.java new file mode 100644 index 00000000..840645b1 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Color.java @@ -0,0 +1,40 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Color. + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class Color { + private final Integer red; + private final Integer green; + private final Integer blue; + private final Integer alpha; + + /** + * Instantiates a new Color. + * + * @param red the red + * @param green the green + * @param blue the blue + * @param alpha the alpha + */ + @JsonCreator + public Color(@JsonProperty("red") Integer red, + @JsonProperty("green") Integer green, + @JsonProperty("blue") Integer blue, + @JsonProperty("alpha") Integer alpha) { + this.red = red; + this.green = green; + this.blue = blue; + this.alpha = alpha; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocRequest.java index 7f142f23..d477d556 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocRequest.java @@ -22,15 +22,32 @@ import java.util.List; /** + * 新建文档 + * * @author felord * @since 2021/10/12 16:53 */ @Data public class CreateDocRequest { + /** + * 文档名字,文件名最多填255个字符,超过255个字符会被截断 + */ private final String docName; + /** + * 文档类型 + */ private final DocType docType; + /** + * 文档管理员userid + */ private List adminUsers; + /** + * 父目录fileid, 在根目录时为空间spaceid + */ private String fatherid; + /** + * 空间spaceid。若指定spaceid,则fatherid也要同时指定 + */ private String spaceid; } diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionRequest.java new file mode 100644 index 00000000..969a8996 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionRequest.java @@ -0,0 +1,56 @@ +package cn.felord.domain.wedoc.doc; + +import cn.felord.enumeration.Dimension; +import lombok.Getter; +import lombok.ToString; + +/** + * 删除表格连续的行(或列)的请求,注意: + *
    + *
  • 该操作会导致表格缩表
  • + *
  • 删除的范围遵循 左闭右开
  • + *
+ * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class DeleteDimensionRequest { + /** + * 工作表唯一标识 + */ + private final String sheetId; + private final Dimension dimension; + + /** + * Instantiates a new Delete dimension request. + * + * @param sheetId the sheet id + * @param dimension the dimension + */ + DeleteDimensionRequest(String sheetId, Dimension dimension) { + this.sheetId = sheetId; + this.dimension = dimension; + } + + /** + * 删除连续行 + * + * @param sheetId the sheet id + * @return the delete dimension request + */ + public static DeleteDimensionRequest row(String sheetId) { + return new DeleteDimensionRequest(sheetId, Dimension.ROW); + } + + /** + * 删除连续列 + * + * @param sheetId the sheet id + * @return the delete dimension request + */ + public static DeleteDimensionRequest column(String sheetId) { + return new DeleteDimensionRequest(sheetId, Dimension.COLUMN); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionResponse.java new file mode 100644 index 00000000..afb43b1d --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionResponse.java @@ -0,0 +1,28 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Delete dimension response. + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class DeleteDimensionResponse { + private final Integer deleted; + + /** + * Instantiates a new Delete dimension response. + * + * @param deleted the deleted + */ + @JsonCreator + DeleteDimensionResponse(@JsonProperty("deleted") Integer deleted) { + this.deleted = deleted; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java index c794c240..1403a5a3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java @@ -16,7 +16,7 @@ public class DocBatchUpdateRequest { private final String docid; private final Integer verison; - private final Set requests; + private final Set requests; /** * Instantiates a new Doc batch update request. @@ -25,7 +25,7 @@ public class DocBatchUpdateRequest { * @param docid the docid * @param version the version */ - public DocBatchUpdateRequest(Set requests, String docid, int version) { + public DocBatchUpdateRequest(Set requests, String docid, int version) { this.docid = docid; this.verison = version; this.requests = requests; @@ -37,7 +37,7 @@ public DocBatchUpdateRequest(Set requests, String docid, int vers * @param requests the requests * @param docid the docid */ - public DocBatchUpdateRequest(Set requests, String docid) { + public DocBatchUpdateRequest(Set requests, String docid) { this.requests = requests; this.docid = docid; this.verison = null; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateRequest.java similarity index 71% rename from wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRequest.java rename to wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateRequest.java index 45841acc..1f0114ef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateRequest.java @@ -13,7 +13,7 @@ */ @ToString @Getter -public class UpdateRequest { +public class DocUpdateRequest { /** * 替换指定位置文本内容 */ @@ -47,7 +47,7 @@ public class UpdateRequest { */ private DocUpdateTextProperty updateTextProperty; - private UpdateRequest() { + private DocUpdateRequest() { } /** @@ -57,8 +57,8 @@ private UpdateRequest() { * @param ranges the ranges * @return the update request */ - public static UpdateRequest replaceText(String text, Set ranges) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest replaceText(String text, Set ranges) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.replaceText = new DocReplaceText(text, ranges); return updateRequest; } @@ -70,8 +70,8 @@ public static UpdateRequest replaceText(String text, Set ranges) { * @param index the index * @return the update request */ - public static UpdateRequest insertText(String text, int index) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest insertText(String text, int index) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.insertText = new DocInsertText(text, index); return updateRequest; } @@ -83,8 +83,8 @@ public static UpdateRequest insertText(String text, int index) { * @param length the length * @return the update request */ - public static UpdateRequest deleteContent(int startIndex, int length) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest deleteContent(int startIndex, int length) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.deleteContent = new DocDeleteContent(startIndex, length); return updateRequest; } @@ -98,8 +98,8 @@ public static UpdateRequest deleteContent(int startIndex, int length) { * @param height the height * @return the update request */ - public static UpdateRequest insertImage(String imageId, int index, int width, int height) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest insertImage(String imageId, int index, int width, int height) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.insertImage = new DocInsertImage(imageId, index, width, height); return updateRequest; } @@ -111,8 +111,8 @@ public static UpdateRequest insertImage(String imageId, int index, int width, in * @param index the index * @return the update request */ - public static UpdateRequest insertImage(String imageId, int index) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest insertImage(String imageId, int index) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.insertImage = new DocInsertImage(imageId, index); return updateRequest; } @@ -123,8 +123,8 @@ public static UpdateRequest insertImage(String imageId, int index) { * @param insertImage the insert image * @return the update request */ - public static UpdateRequest insertImage(DocInsertImage insertImage) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest insertImage(DocInsertImage insertImage) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.insertImage = insertImage; return updateRequest; } @@ -135,8 +135,8 @@ public static UpdateRequest insertImage(DocInsertImage insertImage) { * @param index the index * @return the update request */ - public static UpdateRequest insertPageBreak(int index) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest insertPageBreak(int index) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.insertPageBreak = new DocInsertLocation(index); return updateRequest; } @@ -149,8 +149,8 @@ public static UpdateRequest insertPageBreak(int index) { * @param cols the cols * @return the update request */ - public static UpdateRequest insertTable(int index, int rows, int cols) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest insertTable(int index, int rows, int cols) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.insertTable = new DocInsertTable(index, rows, cols); return updateRequest; } @@ -161,8 +161,8 @@ public static UpdateRequest insertTable(int index, int rows, int cols) { * @param index the index * @return the update request */ - public static UpdateRequest insertParagraph(int index) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest insertParagraph(int index) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.insertParagraph = new DocInsertLocation(index); return updateRequest; } @@ -176,8 +176,8 @@ public static UpdateRequest insertParagraph(int index) { * @param ranges the ranges * @return the update request */ - public static UpdateRequest updateTextProperty(boolean bold, String color, String backgroundColor, Set ranges) { - UpdateRequest updateRequest = new UpdateRequest(); + public static DocUpdateRequest updateTextProperty(boolean bold, String color, String backgroundColor, Set ranges) { + DocUpdateRequest updateRequest = new DocUpdateRequest(); updateRequest.updateTextProperty = new DocUpdateTextProperty(bold, color, backgroundColor, ranges); return updateRequest; } diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/GridData.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/GridData.java new file mode 100644 index 00000000..29f76ff8 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/GridData.java @@ -0,0 +1,38 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Grid data. + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class GridData { + private final Integer startRow; + private final Integer startColumn; + private final List rows; + + /** + * Instantiates a new Grid data. + * + * @param startRow the start row + * @param startColumn the start column + * @param rows the rows + */ + @JsonCreator + GridData(@JsonProperty("start_row") Integer startRow, + @JsonProperty("start_column") Integer startColumn, + @JsonProperty("rows") List rows) { + this.startRow = startRow; + this.startColumn = startColumn; + this.rows = rows; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RowData.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RowData.java new file mode 100644 index 00000000..66e75d3a --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RowData.java @@ -0,0 +1,51 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.Arrays; +import java.util.List; + +/** + * 行数据的资源描述 + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class RowData { + private final List values; + + /** + * Instantiates a new Row data. + * + * @param values the values + */ + @JsonCreator + RowData(@JsonProperty("values") List values) { + this.values = values; + } + + /** + * Of row data. + * + * @param values the values + * @return the row data + */ + public static RowData of(List values) { + return new RowData(values); + } + + /** + * Of row data. + * + * @param values the values + * @return the row data + */ + public static RowData of(CellData... values) { + return new RowData(Arrays.asList(values)); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateRequest.java new file mode 100644 index 00000000..0508b097 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateRequest.java @@ -0,0 +1,15 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Data; + +import java.util.List; + +/** + * @author dax + * @since 2024/8/16 + */ +@Data +public class SheetBatchUpdateRequest { + private final String docid; + private final List requests; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateResponse.java new file mode 100644 index 00000000..11bae493 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateResponse.java @@ -0,0 +1,30 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Sheet batch update response. + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class SheetBatchUpdateResponse { + private final List responses; + + /** + * Instantiates a new Sheet batch update response. + * + * @param responses the responses + */ + @JsonCreator + SheetBatchUpdateResponse(@JsonProperty("responses") List responses) { + this.responses = responses; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetId.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetId.java new file mode 100644 index 00000000..63f7c095 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetId.java @@ -0,0 +1,28 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Delete sheet response. + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class SheetId { + private final String sheetId; + + /** + * Instantiates a new Delete sheet response. + * + * @param sheetId the sheet id + */ + @JsonCreator + SheetId(@JsonProperty("sheet_id") String sheetId) { + this.sheetId = sheetId; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetProperties.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetProperties.java new file mode 100644 index 00000000..c7a27fb6 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetProperties.java @@ -0,0 +1,40 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * 工作表元数据相关的资源描述 + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class SheetProperties { + private final String sheetId; + private final String title; + private final Integer rowCount; + private final Integer columnCount; + + /** + * Instantiates a new Sheet properties. + * + * @param sheetId the sheet id + * @param title the title + * @param rowCount the row count + * @param columnCount the column count + */ + @JsonCreator + SheetProperties(@JsonProperty("sheet_id") String sheetId, + @JsonProperty("title") String title, + @JsonProperty("row_count") Integer rowCount, + @JsonProperty("column_count") Integer columnCount) { + this.sheetId = sheetId; + this.title = title; + this.rowCount = rowCount; + this.columnCount = columnCount; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateRequest.java new file mode 100644 index 00000000..414ed897 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateRequest.java @@ -0,0 +1,89 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Sheet update request. + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class SheetUpdateRequest { + private AddSheetRequest addSheetRequest; + private SheetId deleteSheetRequest; + private UpdateRangeRequest updateRangeRequest; + private DeleteDimensionRequest deleteDimensionRequest; + + private SheetUpdateRequest() { + } + + /** + * 新增工作表 + * + * @param sheetName the sheet name + * @param rowCount the row count + * @param columnCount the column count + * @return the sheet update request + */ + public static SheetUpdateRequest addSheet(String sheetName, int rowCount, int columnCount) { + SheetUpdateRequest sheetUpdateRequest = new SheetUpdateRequest(); + sheetUpdateRequest.addSheetRequest = new AddSheetRequest(sheetName, rowCount, columnCount); + return sheetUpdateRequest; + } + + /** + * 删除工作表 + * + * @param sheetId the sheet id + * @return the sheet update request + */ + public static SheetUpdateRequest deleteSheet(String sheetId) { + SheetUpdateRequest sheetUpdateRequest = new SheetUpdateRequest(); + sheetUpdateRequest.deleteSheetRequest = new SheetId(sheetId); + return sheetUpdateRequest; + } + + /** + * 更新范围内单元格内容 + * + * @param sheetId the sheet id + * @param startRow the start row + * @param startColumn the start column + * @param rows the rows + * @return the sheet update request + */ + public static SheetUpdateRequest updateRange(String sheetId, int startRow, int startColumn, List rows) { + SheetUpdateRequest sheetUpdateRequest = new SheetUpdateRequest(); + sheetUpdateRequest.updateRangeRequest = new UpdateRangeRequest(sheetId, new GridData(startRow, startColumn, rows)); + return sheetUpdateRequest; + } + + /** + * 删除表格连续的行 + * + * @param sheetId the sheet id + * @return the sheet update request + */ + public static SheetUpdateRequest deleteRowDimension(String sheetId) { + SheetUpdateRequest sheetUpdateRequest = new SheetUpdateRequest(); + sheetUpdateRequest.deleteDimensionRequest = DeleteDimensionRequest.row(sheetId); + return sheetUpdateRequest; + } + + /** + * 删除表格连续的列 + * + * @param sheetId the sheet id + * @return the sheet update request + */ + public static SheetUpdateRequest deleteColumnDimension(String sheetId) { + SheetUpdateRequest sheetUpdateRequest = new SheetUpdateRequest(); + sheetUpdateRequest.deleteDimensionRequest = DeleteDimensionRequest.column(sheetId); + return sheetUpdateRequest; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateResponse.java new file mode 100644 index 00000000..0262f3af --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateResponse.java @@ -0,0 +1,53 @@ +package cn.felord.domain.wedoc.doc; + +import cn.felord.enumeration.SheetUpdateEvent; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.Objects; + +/** + * @author dax + * @since 2024/8/16 + */ +@ToString +@Getter +public class SheetUpdateResponse { + private final AddSheetResponse addSheetResponse; + private final UpdateRangeResponse updateRangeResponse; + private final DeleteDimensionResponse deleteDimensionResponse; + private final SheetId deleteSheetResponse; + private final SheetUpdateEvent event; + + + @JsonCreator + SheetUpdateResponse(@JsonProperty("add_sheet_response") AddSheetResponse addSheetResponse, + @JsonProperty("update_range_response") UpdateRangeResponse updateRangeResponse, + @JsonProperty("delete_dimension_response") DeleteDimensionResponse deleteDimensionResponse, + @JsonProperty("delete_sheet_response") SheetId deleteSheetResponse) { + this.addSheetResponse = addSheetResponse; + this.updateRangeResponse = updateRangeResponse; + this.deleteDimensionResponse = deleteDimensionResponse; + this.deleteSheetResponse = deleteSheetResponse; + this.event = this.event(addSheetResponse, updateRangeResponse, deleteDimensionResponse, deleteSheetResponse); + } + + private SheetUpdateEvent event(AddSheetResponse addSheetResponse, + UpdateRangeResponse updateRangeResponse, + DeleteDimensionResponse deleteDimensionResponse, + SheetId deleteSheetResponse) { + if (Objects.nonNull(addSheetResponse)) { + return SheetUpdateEvent.ADD_SHEET; + } else if (Objects.nonNull(updateRangeResponse)) { + return SheetUpdateEvent.UPDATE_RANGE; + } else if (Objects.nonNull(deleteDimensionResponse)) { + return SheetUpdateEvent.DELETE_DIMENSION; + } else if (Objects.nonNull(deleteSheetResponse)) { + return SheetUpdateEvent.DELETE_SHEET; + } + return SheetUpdateEvent.ERROR; + } + +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/TextFormat.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/TextFormat.java new file mode 100644 index 00000000..10a49a0b --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/TextFormat.java @@ -0,0 +1,65 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * 文本样式信息 + * + * @author dax + * @since 2024/8/16 + */ +@ToString +@Getter +public class TextFormat { + /** + * 字体颜色 + */ + private final Color color; + /** + * 下划线 + */ + private final Boolean underline; + /** + * 字体大小,最大72 + */ + private final Integer fontSize; + /** + * 字体加粗 + */ + private final Boolean bold; + /** + * 字体删除线 + */ + private final Boolean strikethrough; + /** + * 斜体 + */ + private final Boolean italic; + /** + * 字体名称,表格支持的字体类型 + * + * @see 字体列表 + */ + private final String font; + + + @JsonCreator + TextFormat(@JsonProperty("color") Color color, + @JsonProperty("underline") Boolean underline, + @JsonProperty("font_size") Integer fontSize, + @JsonProperty("bold") Boolean bold, + @JsonProperty("strikethrough") Boolean strikethrough, + @JsonProperty("italic") Boolean italic, + @JsonProperty("font") String font) { + this.color = color; + this.underline = underline; + this.fontSize = fontSize; + this.bold = bold; + this.strikethrough = strikethrough; + this.italic = italic; + this.font = font; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeRequest.java new file mode 100644 index 00000000..16795278 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeRequest.java @@ -0,0 +1,27 @@ +package cn.felord.domain.wedoc.doc; + +import lombok.Data; + +/** + * 更新范围内单元格内容请求,单次更新的范围大小需满足以下限制: + *

+ *

    + *
  • 范围行数 不大于 1000
  • + *
  • 范围列数 不大于 200
  • + *
  • 范围内的总单元格数量 不大于 10000
  • + *
+ * + * @author dax + * @since 2024 /8/16 + */ +@Data +public class UpdateRangeRequest { + /** + * 工作表唯一标识 + */ + private final String sheetId; + /** + * 写入指定区域的数据 + */ + private final GridData gridData; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeResponse.java new file mode 100644 index 00000000..bf7ee0ce --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeResponse.java @@ -0,0 +1,28 @@ +package cn.felord.domain.wedoc.doc; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Update range response. + * + * @author dax + * @since 2024 /8/16 + */ +@ToString +@Getter +public class UpdateRangeResponse { + private final Integer updatedCells; + + /** + * Instantiates a new Update range response. + * + * @param updatedCells the updated cells + */ + @JsonCreator + UpdateRangeResponse(@JsonProperty("updated_cells") Integer updatedCells) { + this.updatedCells = updatedCells; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/Dimension.java b/wecom-objects/src/main/java/cn/felord/enumeration/Dimension.java new file mode 100644 index 00000000..ba83b5e7 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/Dimension.java @@ -0,0 +1,18 @@ +package cn.felord.enumeration; + +/** + * 声明维度属性为行或者列的字符串枚举值 + * + * @author dax + * @since 2024 /8/16 + */ +public enum Dimension { + /** + * 行 + */ + ROW, + /** + * 列 + */ + COLUMN +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SheetUpdateEvent.java b/wecom-objects/src/main/java/cn/felord/enumeration/SheetUpdateEvent.java new file mode 100644 index 00000000..373b420c --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SheetUpdateEvent.java @@ -0,0 +1,15 @@ +package cn.felord.enumeration; + +/** + * 自定义表格编辑事件 + * + * @author dax + * @since 2024/8/16 + */ +public enum SheetUpdateEvent { + ADD_SHEET, + UPDATE_RANGE, + DELETE_DIMENSION, + DELETE_SHEET, + ERROR +} diff --git a/wecom-sdk/pom.xml b/wecom-sdk/pom.xml index 54c7a532..79981111 100644 --- a/wecom-sdk/pom.xml +++ b/wecom-sdk/pom.xml @@ -22,7 +22,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 wecom-sdk jar diff --git a/wecom-sdk/src/main/java/cn/felord/api/DocApi.java b/wecom-sdk/src/main/java/cn/felord/api/DocApi.java index a4626ecc..652caac7 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/DocApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/DocApi.java @@ -19,7 +19,18 @@ import cn.felord.domain.GenericResponse; import cn.felord.domain.WeComResponse; import cn.felord.domain.common.FormId; -import cn.felord.domain.wedoc.doc.*; +import cn.felord.domain.wedoc.doc.AccessRuleUpdateRequest; +import cn.felord.domain.wedoc.doc.CreateDocRequest; +import cn.felord.domain.wedoc.doc.CreateDocResponse; +import cn.felord.domain.wedoc.doc.DocAuthResponse; +import cn.felord.domain.wedoc.doc.DocBaseInfo; +import cn.felord.domain.wedoc.doc.DocBatchUpdateRequest; +import cn.felord.domain.wedoc.doc.DocId; +import cn.felord.domain.wedoc.doc.DocSecuritySetting; +import cn.felord.domain.wedoc.doc.FileMemberUpdateRequest; +import cn.felord.domain.wedoc.doc.RenameDocRequest; +import cn.felord.domain.wedoc.doc.SheetBatchUpdateRequest; +import cn.felord.domain.wedoc.doc.SheetBatchUpdateResponse; import retrofit2.http.Body; import retrofit2.http.POST; @@ -115,6 +126,23 @@ public interface DocApi { @POST("wedoc/document/batch_update") WeComResponse batchUpdateDocument(@Body DocBatchUpdateRequest request) throws WeComException; + /** + * 编辑表格内容 + *

+ * 该接口可以对一个在线表格批量执行多个更新操作,注意: + *

    + *
  • 批量更新请求中的各个操作会逐个按顺序执行,直到全部执行完成则请求返回,或者其中一个操作报错则不再继续执行后续的操作。
  • + *
  • 每一个更新操作在执行之前都会做请求校验(包括权限校验、参数校验等等),如果校验未通过则该更新操作会报错并返回,不再执行后续操作。
  • + *
  • 单次批量更新请求的操作数量 不大于 5。
  • + *
+ * + * @param request the request + * @return the generic response + * @throws WeComException the we com exception + */ + @POST("wedoc/spreadsheet/batch_update") + GenericResponse batchUpdateSheet(@Body SheetBatchUpdateRequest request) throws WeComException; + /** * 分享收集表 * diff --git a/wemp-objects/pom.xml b/wemp-objects/pom.xml index 3e445e80..b8ba4cae 100644 --- a/wemp-objects/pom.xml +++ b/wemp-objects/pom.xml @@ -21,7 +21,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 wemp-objects diff --git a/wemp-sdk/pom.xml b/wemp-sdk/pom.xml index 64070927..502b98d8 100644 --- a/wemp-sdk/pom.xml +++ b/wemp-sdk/pom.xml @@ -21,7 +21,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 wemp-sdk diff --git a/wepay-objects/pom.xml b/wepay-objects/pom.xml index 20f209bf..6b8cc104 100644 --- a/wepay-objects/pom.xml +++ b/wepay-objects/pom.xml @@ -21,7 +21,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 wepay-objects jar diff --git a/wepay-sdk/pom.xml b/wepay-sdk/pom.xml index 59538e81..d0987c1c 100644 --- a/wepay-sdk/pom.xml +++ b/wepay-sdk/pom.xml @@ -21,7 +21,7 @@ cn.felord wecom - 1.2.8 + 1.2.9 wepay-sdk From 7d1f8d9a0601b10f3fdfd69ea8d4913f211c723e Mon Sep 17 00:00:00 2001 From: xiafang Date: Fri, 30 Aug 2024 10:00:30 +0800 Subject: [PATCH 06/13] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=BC=82=E6=AD=A5?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E7=BB=93=E6=9E=9C=E5=AD=97=E6=AE=B5=E6=BA=A2?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #IAN8WQ --- .../cn/felord/domain/contactbook/async/BatchResultResponse.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchResultResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchResultResponse.java index f78ee0c2..1f185540 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchResultResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchResultResponse.java @@ -30,7 +30,7 @@ public class BatchResultResponse extends WeComResponse { private Integer status; private String type; - private Integer total; + private Long total; private Integer percentage; private List result; } From 4d7736cf052ae6556597989b43bf80b3b50d6293 Mon Sep 17 00:00:00 2001 From: xiafang Date: Fri, 30 Aug 2024 10:10:10 +0800 Subject: [PATCH 07/13] =?UTF-8?q?=E9=83=A8=E5=88=86API=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../felord/domain/approval/OpenApprovalData.java | 6 +++--- .../cn/felord/domain/callback/ApprovalInfo.java | 4 ++-- .../main/java/cn/felord/api/AgentManagerApi.java | 15 +++++++++++++-- .../src/main/java/cn/felord/api/JsSdkApi.java | 3 ++- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/OpenApprovalData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/OpenApprovalData.java index 990e52ea..093eb07d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/OpenApprovalData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/OpenApprovalData.java @@ -37,14 +37,14 @@ public class OpenApprovalData { private String applyUsername; @JsonProperty("ApprovalNodes") private ApprovalNodes approvalNodes; - @JsonProperty("ApproverStep") - private Long approverStep; + @JsonProperty("Approverstep") + private Integer approverStep; @JsonProperty("NotifyNodes") private NotifyNodes notifyNodes; @JsonProperty("OpenSpName") private String openSpName; @JsonProperty("OpenSpstatus") - private Long openSpstatus; + private Integer openSpstatus; @JsonProperty("OpenTemplateId") private String openTemplateId; @JsonProperty("ThirdNo") diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/ApprovalInfo.java b/wecom-objects/src/main/java/cn/felord/domain/callback/ApprovalInfo.java index 2fbc6eb9..9539d09d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/ApprovalInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/ApprovalInfo.java @@ -142,6 +142,6 @@ public class ApprovalInfo { /** * 自建应用审批当前审批节点,从0开始 */ - @XStreamAlias("ApproverStep") - private Integer ApproverStep; + @XStreamAlias("Approverstep") + private Integer approverStep; } diff --git a/wecom-sdk/src/main/java/cn/felord/api/AgentManagerApi.java b/wecom-sdk/src/main/java/cn/felord/api/AgentManagerApi.java index d1d1b71b..3028b8e3 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/AgentManagerApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/AgentManagerApi.java @@ -52,7 +52,7 @@ * 应用管理 * * @author dax - * @since 2024/6/27 11:33 + * @since 2024 /6/27 11:33 */ public class AgentManagerApi { private final InternalAgentManagerApi internalAgentManagerApi; @@ -80,7 +80,18 @@ public class AgentManagerApi { * @throws WeComException the weComException */ public AgentDetailsResponse getAgentDetails() throws WeComException { - return internalAgentManagerApi.getAgentDetails(agentDetails.getAgentId()); + return this.getAgentDetails(agentDetails.getAgentId()); + } + + /** + * 获取应用,需保证应用ID参数和Token一致 + * + * @param agentId the agent id + * @return the agent details + * @throws WeComException the we com exception + */ + public AgentDetailsResponse getAgentDetails(String agentId) throws WeComException { + return internalAgentManagerApi.getAgentDetails(agentId); } /** diff --git a/wecom-sdk/src/main/java/cn/felord/api/JsSdkApi.java b/wecom-sdk/src/main/java/cn/felord/api/JsSdkApi.java index cccc899e..4551d711 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/JsSdkApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/JsSdkApi.java @@ -38,6 +38,7 @@ */ public class JsSdkApi { private static final String SIGNATURE_FORMATTER = "jsapi_ticket={0}&noncestr={1}×tamp={2}&url={3}"; + private static final String LAUNCH_CODE_PREFIX = "wxwork://launch?launch_code="; private static final AlternativeJdkIdGenerator ID_GENERATOR = new AlternativeJdkIdGenerator(); private final AgentDetails agentDetails; private final JsApi jsApi; @@ -123,7 +124,7 @@ public AgentConfigResponse agentTicket(String url) throws WeComException { public String getLaunchCode(String operatorUserid, String singleChatUserId) throws WeComException { String launchCode = jsApi.getLaunchCode(new LaunchCodeRequest(operatorUserid, singleChatUserId)) .getLaunchCode(); - return "wxwork://launch?launch_code=" + launchCode; + return LAUNCH_CODE_PREFIX + launchCode; } private JSignatureResponse sha1(String ticket, String url) { From 9aa42ab017bd6a46212f4628410a10c119540900 Mon Sep 17 00:00:00 2001 From: xiafang Date: Mon, 2 Sep 2024 09:28:34 +0800 Subject: [PATCH 08/13] =?UTF-8?q?=E8=A1=A5=E5=85=85=E5=AE=A1=E6=89=B9?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E8=BF=94=E5=9B=9E=E5=AD=97=E6=AE=B5=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #20 --- .../cn/felord/domain/approval/SelectorKey.java | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java index d76f3fda..082ba56e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java @@ -24,20 +24,33 @@ * The type Selector key. * * @author dax - * @since 2024/9/12 + * @since 2024 /9/12 */ @ToString @Getter public class SelectorKey { private final String key; + private final ApprovalTitle value; + /** * Instantiates a new Selector key. * * @param key the key */ + public SelectorKey(String key) { + this(key, null); + } + + /** + * Instantiates a new Selector key. + * + * @param key the key + * @param value the value + */ @JsonCreator - public SelectorKey(@JsonProperty("key") String key) { + public SelectorKey(@JsonProperty("key") String key, @JsonProperty("value") ApprovalTitle value) { this.key = key; + this.value = value; } } From 06b4f23b1d2e0b7b8a8bbafcb42353a51b3bfa57 Mon Sep 17 00:00:00 2001 From: xiafang Date: Thu, 5 Sep 2024 15:04:26 +0800 Subject: [PATCH 09/13] =?UTF-8?q?=E6=99=BA=E8=83=BD=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E6=8E=A5=E5=8F=A3=EF=BC=8C=E5=AD=90=E8=A1=A8?= =?UTF-8?q?=E3=80=81=E8=A7=86=E5=9B=BE=E3=80=81=E5=AD=97=E6=AE=B5=EF=BC=8C?= =?UTF-8?q?=E4=B8=8D=E5=8C=85=E5=90=AB=E8=AE=B0=E5=BD=95=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cn/felord/domain/GenericResponse.java | 4 + .../felord/domain/approval/SelectorKey.java | 2 +- .../smartsheet/AbstractFilterCondition.java | 19 +++ .../smartsheet/AddOrUpdateFieldsRequest.java | 16 ++ .../wedoc/smartsheet/AddSheetRequest.java | 61 ++++++++ .../wedoc/smartsheet/AddViewRequest.java | 133 +++++++++++++++++ .../smartsheet/AttachmentFieldProperty.java | 47 ++++++ .../smartsheet/AttachmentSheetField.java | 48 ++++++ .../smartsheet/AutoNumberFieldProperty.java | 51 +++++++ .../wedoc/smartsheet/AutoNumberRule.java | 43 ++++++ .../smartsheet/AutoNumberSheetField.java | 48 ++++++ .../wedoc/smartsheet/BoolFilterCondition.java | 45 ++++++ .../domain/wedoc/smartsheet/BoolValue.java | 12 ++ .../smartsheet/CheckboxFieldProperty.java | 28 ++++ .../wedoc/smartsheet/CheckboxSheetField.java | 48 ++++++ .../smartsheet/CreatedTimeSheetField.java | 48 ++++++ .../smartsheet/CurrencyFieldProperty.java | 50 +++++++ .../wedoc/smartsheet/CurrencySheetField.java | 48 ++++++ .../smartsheet/DateTimeFieldProperty.java | 44 ++++++ .../smartsheet/DateTimeFilterCondition.java | 60 ++++++++ .../wedoc/smartsheet/DateTimeSheetField.java | 48 ++++++ .../wedoc/smartsheet/DateTimeValue.java | 44 ++++++ .../wedoc/smartsheet/DelFieldsRequest.java | 16 ++ .../wedoc/smartsheet/DelSheetRequest.java | 17 +++ .../wedoc/smartsheet/DelViewRequest.java | 16 ++ .../domain/wedoc/smartsheet/FilterSpec.java | 56 +++++++ .../domain/wedoc/smartsheet/GroupSpec.java | 40 +++++ .../smartsheet/LocationFieldProperty.java | 46 ++++++ .../wedoc/smartsheet/LocationSheetField.java | 48 ++++++ .../smartsheet/ModifiedTimeSheetField.java | 48 ++++++ .../wedoc/smartsheet/NumberFieldProperty.java | 44 ++++++ .../smartsheet/NumberFilterCondition.java | 47 ++++++ .../wedoc/smartsheet/NumberSheetField.java | 48 ++++++ .../domain/wedoc/smartsheet/NumberValue.java | 14 ++ .../smartsheet/ProgressFieldProperty.java | 41 ++++++ .../wedoc/smartsheet/ProgressSheetField.java | 48 ++++++ .../smartsheet/ReferenceFieldProperty.java | 30 ++++ .../wedoc/smartsheet/ReferenceSheetField.java | 48 ++++++ .../wedoc/smartsheet/SelectFieldOption.java | 48 ++++++ .../wedoc/smartsheet/SelectFieldProperty.java | 34 +++++ .../wedoc/smartsheet/SelectSheetField.java | 48 ++++++ .../domain/wedoc/smartsheet/SheetField.java | 76 ++++++++++ .../wedoc/smartsheet/SheetViewDetail.java | 14 ++ .../wedoc/smartsheet/SheetViewInfo.java | 15 ++ .../smartsheet/SingleSelectSheetField.java | 48 ++++++ .../smartsheet/SmartSheetProperties.java | 46 ++++++ .../domain/wedoc/smartsheet/SortField.java | 51 +++++++ .../domain/wedoc/smartsheet/SortSpec.java | 40 +++++ .../smartsheet/StringFilterCondition.java | 47 ++++++ .../domain/wedoc/smartsheet/StringValue.java | 14 ++ .../wedoc/smartsheet/TimeFieldProperty.java | 39 +++++ .../wedoc/smartsheet/UpdateSheetRequest.java | 42 ++++++ .../wedoc/smartsheet/UpdateViewRequest.java | 55 +++++++ .../wedoc/smartsheet/UrlFieldProperty.java | 46 ++++++ .../wedoc/smartsheet/UrlSheetField.java | 48 ++++++ .../wedoc/smartsheet/UserFieldProperty.java | 32 ++++ .../wedoc/smartsheet/UserFilterCondition.java | 47 ++++++ .../wedoc/smartsheet/UserSheetField.java | 48 ++++++ .../wedoc/smartsheet/ViewDateRange.java | 13 ++ .../domain/wedoc/smartsheet/ViewProperty.java | 137 ++++++++++++++++++ .../smartsheet/WwGroupFieldProperty.java | 28 ++++ .../wedoc/smartsheet/WwGroupSheetField.java | 48 ++++++ .../enumeration/AutoNumberFieldType.java | 18 +++ .../enumeration/AutoNumberRuleType.java | 25 ++++ .../cn/felord/enumeration/Conjunction.java | 18 +++ .../cn/felord/enumeration/CurrencyType.java | 111 ++++++++++++++ .../enumeration/DateTimeFieldFormatter.java | 82 +++++++++++ .../cn/felord/enumeration/DecimalPlaces.java | 86 +++++++++++ .../enumeration/FilterDateTimeType.java | 63 ++++++++ .../cn/felord/enumeration/FilterOperator.java | 64 ++++++++ .../felord/enumeration/SelectFieldStyle.java | 94 ++++++++++++ .../cn/felord/enumeration/SheetFieldType.java | 99 +++++++++++++ .../enumeration/SmartSheetViewType.java | 35 +++++ .../json/FilterConditionDeserializer.java | 73 ++++++++++ .../java/cn/felord/api/SmartSheetApi.java | 131 +++++++++++++++++ .../src/main/java/cn/felord/api/WedocApi.java | 11 +- 76 files changed, 3526 insertions(+), 2 deletions(-) create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AbstractFilterCondition.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddOrUpdateFieldsRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddSheetRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddViewRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberRule.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolFilterCondition.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolValue.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CreatedTimeSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencyFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencySheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFilterCondition.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeValue.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelFieldsRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelSheetRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelViewRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/FilterSpec.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/GroupSpec.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ModifiedTimeSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFilterCondition.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberValue.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldOption.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewDetail.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewInfo.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SingleSelectSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SmartSheetProperties.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortSpec.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringFilterCondition.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringValue.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/TimeFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateSheetRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateViewRequest.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFilterCondition.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewDateRange.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupFieldProperty.java create mode 100644 wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupSheetField.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberFieldType.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberRuleType.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/Conjunction.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/CurrencyType.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/DateTimeFieldFormatter.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/DecimalPlaces.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/FilterDateTimeType.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/FilterOperator.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/SelectFieldStyle.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/SheetFieldType.java create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/SmartSheetViewType.java create mode 100644 wecom-objects/src/main/java/cn/felord/json/FilterConditionDeserializer.java create mode 100644 wecom-sdk/src/main/java/cn/felord/api/SmartSheetApi.java diff --git a/wecom-objects/src/main/java/cn/felord/domain/GenericResponse.java b/wecom-objects/src/main/java/cn/felord/domain/GenericResponse.java index e91999ea..312f4ab9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/GenericResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/GenericResponse.java @@ -95,7 +95,11 @@ public class GenericResponse extends WeComResponse { "living_info", "meetingroom_id", "ids", + "view", + "fields", + "records", "agreeinfo", + "properties", "lists" }) private T data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java index 082ba56e..9890e83a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java @@ -49,7 +49,7 @@ public SelectorKey(String key) { * @param value the value */ @JsonCreator - public SelectorKey(@JsonProperty("key") String key, @JsonProperty("value") ApprovalTitle value) { + SelectorKey(@JsonProperty("key") String key, @JsonProperty("value") ApprovalTitle value) { this.key = key; this.value = value; } diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AbstractFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AbstractFilterCondition.java new file mode 100644 index 00000000..1030c2a2 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AbstractFilterCondition.java @@ -0,0 +1,19 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.FilterOperator; +import cn.felord.json.FilterConditionDeserializer; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +/** + * @author dax + * @since 2024/9/2 + */ +@ToString +@RequiredArgsConstructor +@JsonDeserialize(using = FilterConditionDeserializer.class) +public abstract class AbstractFilterCondition { + private final String fieldId; + private final FilterOperator operator; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddOrUpdateFieldsRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddOrUpdateFieldsRequest.java new file mode 100644 index 00000000..fc2f4745 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddOrUpdateFieldsRequest.java @@ -0,0 +1,16 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Data; + +import java.util.List; + +/** + * @author dax + * @since 2024/9/5 + */ +@Data +public class AddOrUpdateFieldsRequest { + private final String docid; + private final String sheetId; + private final List fields; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddSheetRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddSheetRequest.java new file mode 100644 index 00000000..bf702a61 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddSheetRequest.java @@ -0,0 +1,61 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Getter; +import lombok.ToString; + +/** + * The type Add sheet request. + * + * @author dax + * @since 2024 /8/30 + */ +@ToString +@Getter +public class AddSheetRequest { + + private final String docid; + private SmartSheetProperties properties; + + + /** + * Instantiates a new Add sheet request. + * + * @param docid the docid + */ + public AddSheetRequest(String docid) { + this.docid = docid; + } + + /** + * Instantiates a new Add sheet request. + * + * @param docId the doc id + * @param title the title + */ + public AddSheetRequest(String docId, String title) { + this(docId, title, null); + } + + /** + * Instantiates a new Add sheet request. + * + * @param docId the doc id + * @param index the index + */ + public AddSheetRequest(String docId, int index) { + this(docId, null, index); + } + + /** + * Instantiates a new Add sheet request. + * + * @param docId the doc id + * @param title the title + * @param index the index + */ + public AddSheetRequest(String docId, String title, Integer index) { + this.docid = docId; + this.properties = new SmartSheetProperties(title, index); + } + +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddViewRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddViewRequest.java new file mode 100644 index 00000000..a77270fd --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddViewRequest.java @@ -0,0 +1,133 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SmartSheetViewType; +import lombok.Getter; +import lombok.ToString; + +/** + * 添加视图 + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class AddViewRequest { + private final String docid; + private final String sheetId; + private final String viewTitle; + private final SmartSheetViewType viewType; + private final ViewDateRange propertyGantt; + private final ViewDateRange propertyCalendar; + + + /** + * Instantiates a new Add view request. + * + * @param docid the docid + * @param sheetId the sheet id + * @param viewTitle the view title + * @param viewType the view type + * @param propertyGantt the property gantt + * @param propertyCalendar the property calendar + */ + AddViewRequest(String docid, + String sheetId, + String viewTitle, + SmartSheetViewType viewType, + ViewDateRange propertyGantt, + ViewDateRange propertyCalendar) { + this.docid = docid; + this.sheetId = sheetId; + this.viewTitle = viewTitle; + this.viewType = viewType; + this.propertyGantt = propertyGantt; + this.propertyCalendar = propertyCalendar; + } + + /** + * Instantiates a new Add view request. + * + * @param docid the docid + * @param sheetId the sheet id + * @param viewTitle the view title + * @param viewType the view type + */ + AddViewRequest(String docid, String sheetId, String viewTitle, SmartSheetViewType viewType) { + this(docid, sheetId, viewTitle, viewType, null, null); + } + + /** + * 网格视图 + * + * @param docid the docid + * @param sheetId the sheet id + * @param viewTitle the view title + * @return the add view request + */ + public AddViewRequest grid(String docid, + String sheetId, + String viewTitle) { + return new AddViewRequest(docid, sheetId, viewTitle, SmartSheetViewType.VIEW_TYPE_GRID); + } + + /** + * 看板视图 + * + * @param docid the docid + * @param sheetId the sheet id + * @param viewTitle the view title + * @return add view request + */ + public AddViewRequest kanban(String docid, + String sheetId, + String viewTitle) { + return new AddViewRequest(docid, sheetId, viewTitle, SmartSheetViewType.VIEW_TYPE_KANBAN); + } + + /** + * 画册视图 + * + * @param docid the docid + * @param sheetId the sheet id + * @param viewTitle the view title + * @return the add view request + */ + public AddViewRequest gallery(String docid, + String sheetId, + String viewTitle) { + return new AddViewRequest(docid, sheetId, viewTitle, SmartSheetViewType.VIEW_TYPE_GALLERY); + } + + /** + * 甘特视图 + * + * @param docid the docid + * @param sheetId the sheet id + * @param viewTitle the view title + * @param propertyGantt the property gantt + * @return the add view request + */ + public AddViewRequest gantt(String docid, + String sheetId, + String viewTitle, + ViewDateRange propertyGantt) { + return new AddViewRequest(docid, sheetId, viewTitle, SmartSheetViewType.VIEW_TYPE_GANTT, propertyGantt, null); + } + + /** + * 日历视图 + * + * @param docid the docid + * @param sheetId the sheet id + * @param viewTitle the view title + * @param propertyCalendar the property calendar + * @return the add view request + */ + public AddViewRequest calendar(String docid, + String sheetId, + String viewTitle, + ViewDateRange propertyCalendar) { + return new AddViewRequest(docid, sheetId, viewTitle, SmartSheetViewType.VIEW_TYPE_CALENDAR, null, propertyCalendar); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentFieldProperty.java new file mode 100644 index 00000000..7e3fe2af --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentFieldProperty.java @@ -0,0 +1,47 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Checkbox field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class AttachmentFieldProperty { + private final String displayMode; + + /** + * Instantiates a new Checkbox field property. + * + * @param displayMode the display mode + */ + @JsonCreator + AttachmentFieldProperty(@JsonProperty("display_mode") String displayMode) { + this.displayMode = displayMode; + } + + /** + * 列表样式 + * + * @return the attachment field property + */ + public static AttachmentFieldProperty list() { + return new AttachmentFieldProperty("DISPLAY_MODE_LIST"); + } + + /** + * 宫格样式 + * + * @return the attachment field property + */ + public static AttachmentFieldProperty grid() { + return new AttachmentFieldProperty("DISPLAY_MODE_GRID"); + } + +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentSheetField.java new file mode 100644 index 00000000..a77daf3c --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Attachment sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class AttachmentSheetField extends SheetField { + private final AttachmentFieldProperty propertyAttachment; + + /** + * Instantiates a new Attachment sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyAttachment the property attachment + */ + public AttachmentSheetField(String fieldId, SheetFieldType fieldType, AttachmentFieldProperty propertyAttachment) { + super(fieldId, fieldType); + this.propertyAttachment = propertyAttachment; + } + + /** + * Instantiates a new Attachment sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyAttachment the property attachment + */ + @JsonCreator + public AttachmentSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_attachment") AttachmentFieldProperty propertyAttachment) { + super(fieldId, fieldType, fieldTitle); + this.propertyAttachment = propertyAttachment; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberFieldProperty.java new file mode 100644 index 00000000..7fad5ebd --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberFieldProperty.java @@ -0,0 +1,51 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.AutoNumberFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Auto number field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class AutoNumberFieldProperty { + private final String type; + private final List rules; + private final Boolean reformatExistingRecord; + + /** + * Instantiates a new Auto number field property. + * + * @param type the type + * @param rules the rules + * @param reformatExistingRecord the reformat existing record + */ + @JsonCreator + AutoNumberFieldProperty(@JsonProperty("type") String type, + @JsonProperty("rules") List rules, + @JsonProperty("reformat_existing_record") Boolean reformatExistingRecord) { + this.type = type; + this.rules = rules; + this.reformatExistingRecord = reformatExistingRecord; + } + + /** + * Of auto number field property. + * + * @param type the type + * @param rules the rules + * @param reformatExistingRecord the reformat existing record + * @return the auto number field property + */ + public static AutoNumberFieldProperty of(AutoNumberFieldType type, List rules, boolean reformatExistingRecord) { + return new AutoNumberFieldProperty(type.name(), rules, reformatExistingRecord); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberRule.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberRule.java new file mode 100644 index 00000000..ee34c75d --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberRule.java @@ -0,0 +1,43 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.AutoNumberRuleType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Auto number rule. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class AutoNumberRule { + private final String type; + private final String value; + + /** + * Instantiates a new Auto number rule. + * + * @param type the type + * @param value the value + */ + @JsonCreator + AutoNumberRule(@JsonProperty("type") String type, @JsonProperty("value") String value) { + this.type = type; + this.value = value; + } + + /** + * Of auto number rule. + * + * @param type the type + * @param value the value + * @return the auto number rule + */ + public static AutoNumberRule of(AutoNumberRuleType type, String value) { + return new AutoNumberRule(type.name(), value); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberSheetField.java new file mode 100644 index 00000000..4bae2ec9 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type AutoNumber sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class AutoNumberSheetField extends SheetField { + private final AutoNumberFieldProperty propertyAutoNumber; + + /** + * Instantiates a new AutoNumber sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyAutoNumber the property AutoNumber + */ + public AutoNumberSheetField(String fieldId, SheetFieldType fieldType, AutoNumberFieldProperty propertyAutoNumber) { + super(fieldId, fieldType); + this.propertyAutoNumber = propertyAutoNumber; + } + + /** + * Instantiates a new AutoNumber sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyAutoNumber the property AutoNumber + */ + @JsonCreator + public AutoNumberSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_auto_number") AutoNumberFieldProperty propertyAutoNumber) { + super(fieldId, fieldType, fieldTitle); + this.propertyAutoNumber = propertyAutoNumber; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolFilterCondition.java new file mode 100644 index 00000000..c4124296 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolFilterCondition.java @@ -0,0 +1,45 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.FilterOperator; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Bool filter condition. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class BoolFilterCondition extends AbstractFilterCondition { + private final BoolValue boolValue; + + /** + * Instantiates a new Bool filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param boolValue the bool value + */ + @JsonCreator + BoolFilterCondition(@JsonProperty("field_id") String fieldId, + @JsonProperty("operator") FilterOperator operator, + @JsonProperty("bool_value") BoolValue boolValue) { + super(fieldId, operator); + this.boolValue = boolValue; + } + + /** + * Instantiates a new Bool filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param boolValue the bool value + */ + public BoolFilterCondition(String fieldId, FilterOperator operator, boolean boolValue) { + this(fieldId, operator, new BoolValue(boolValue)); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolValue.java new file mode 100644 index 00000000..8576e01b --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolValue.java @@ -0,0 +1,12 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Data; + +/** + * @author dax + * @since 2024/9/2 + */ +@Data +public class BoolValue { + private final Boolean value; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxFieldProperty.java new file mode 100644 index 00000000..41f8ff59 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxFieldProperty.java @@ -0,0 +1,28 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Checkbox field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class CheckboxFieldProperty { + private final Boolean checked; + + /** + * Instantiates a new Checkbox field property. + * + * @param checked the checked + */ + @JsonCreator + public CheckboxFieldProperty(@JsonProperty("checked") Boolean checked) { + this.checked = checked; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxSheetField.java new file mode 100644 index 00000000..5460d6bf --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Checkbox sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class CheckboxSheetField extends SheetField { + private final CheckboxFieldProperty propertyCheckbox; + + /** + * Instantiates a new Checkbox sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyCheckbox the property checkbox + */ + public CheckboxSheetField(String fieldId, SheetFieldType fieldType, CheckboxFieldProperty propertyCheckbox) { + super(fieldId, fieldType); + this.propertyCheckbox = propertyCheckbox; + } + + /** + * Instantiates a new Checkbox sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyCheckbox the property checkbox + */ + @JsonCreator + public CheckboxSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_checkbox") CheckboxFieldProperty propertyCheckbox) { + super(fieldId, fieldType, fieldTitle); + this.propertyCheckbox = propertyCheckbox; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CreatedTimeSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CreatedTimeSheetField.java new file mode 100644 index 00000000..d854ac24 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CreatedTimeSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Created time sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class CreatedTimeSheetField extends SheetField { + private final TimeFieldProperty propertyCreatedTime; + + /** + * Instantiates a new CreatedTime sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyCreatedTime the property created time + */ + public CreatedTimeSheetField(String fieldId, SheetFieldType fieldType, TimeFieldProperty propertyCreatedTime) { + super(fieldId, fieldType); + this.propertyCreatedTime = propertyCreatedTime; + } + + /** + * Instantiates a new Created time sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyCreatedTime the property created time + */ + @JsonCreator + public CreatedTimeSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_created_time") TimeFieldProperty propertyCreatedTime) { + super(fieldId, fieldType, fieldTitle); + this.propertyCreatedTime = propertyCreatedTime; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencyFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencyFieldProperty.java new file mode 100644 index 00000000..7100759c --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencyFieldProperty.java @@ -0,0 +1,50 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.CurrencyType; +import cn.felord.enumeration.DecimalPlaces; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Currency field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class CurrencyFieldProperty { + private final String currencyType; + private final Integer decimalPlaces; + private final Boolean useSeparate; + + /** + * Instantiates a new Currency field property. + * + * @param currencyType the currency type + * @param decimalPlaces the decimal places + * @param useSeparate the use separate + */ + @JsonCreator + CurrencyFieldProperty(@JsonProperty("currency_type") String currencyType, + @JsonProperty("decimal_places") Integer decimalPlaces, + @JsonProperty("use_separate") Boolean useSeparate) { + this.currencyType = currencyType; + this.decimalPlaces = decimalPlaces; + this.useSeparate = useSeparate; + } + + /** + * Of currency field property. + * + * @param currencyType the currency type + * @param decimalPlaces the decimal places + * @param useSeparate the use separate + * @return the currency field property + */ + public static CurrencyFieldProperty of(CurrencyType currencyType, DecimalPlaces decimalPlaces, Boolean useSeparate) { + return new CurrencyFieldProperty(currencyType.name(), decimalPlaces.getType(), useSeparate); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencySheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencySheetField.java new file mode 100644 index 00000000..bfac2cca --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencySheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Currency sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class CurrencySheetField extends SheetField { + private final CurrencyFieldProperty propertyCurrency; + + /** + * Instantiates a new Currency sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyCurrency the property Currency + */ + public CurrencySheetField(String fieldId, SheetFieldType fieldType, CurrencyFieldProperty propertyCurrency) { + super(fieldId, fieldType); + this.propertyCurrency = propertyCurrency; + } + + /** + * Instantiates a new Currency sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyCurrency the property Currency + */ + @JsonCreator + public CurrencySheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_currency") CurrencyFieldProperty propertyCurrency) { + super(fieldId, fieldType, fieldTitle); + this.propertyCurrency = propertyCurrency; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFieldProperty.java new file mode 100644 index 00000000..0c1325ad --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFieldProperty.java @@ -0,0 +1,44 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.DateTimeFieldFormatter; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Date time field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class DateTimeFieldProperty { + private final String format; + private final Boolean autoFill; + + /** + * Instantiates a new Date time field property. + * + * @param format the format + * @param autoFill the auto fill + */ + @JsonCreator + DateTimeFieldProperty(@JsonProperty("format") String format, + @JsonProperty("autoFill") Boolean autoFill) { + this.format = format; + this.autoFill = autoFill; + } + + /** + * Of date time field property. + * + * @param formatter the formatter + * @param autoFill the auto fill + * @return the date time field property + */ + public static DateTimeFieldProperty of(DateTimeFieldFormatter formatter, boolean autoFill) { + return new DateTimeFieldProperty(formatter.getFormat(), autoFill); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFilterCondition.java new file mode 100644 index 00000000..894af70a --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFilterCondition.java @@ -0,0 +1,60 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.FilterDateTimeType; +import cn.felord.enumeration.FilterOperator; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Date time filter condition. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class DateTimeFilterCondition extends AbstractFilterCondition { + private final DateTimeValue dateTimeValue; + + /** + * Instantiates a new Date time filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param dateTimeValue the date time value + */ + @JsonCreator + DateTimeFilterCondition(@JsonProperty("field_id") String fieldId, + @JsonProperty("operator") FilterOperator operator, + @JsonProperty("date_time_value") DateTimeValue dateTimeValue) { + super(fieldId, operator); + this.dateTimeValue = dateTimeValue; + } + + /** + * Instantiates a new Date time filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param type the type + * @param value the value + */ + public DateTimeFilterCondition(String fieldId, FilterOperator operator, FilterDateTimeType type, List value) { + this(fieldId, operator, new DateTimeValue(type, value)); + } + + /** + * Instantiates a new Date time filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param type the type + */ + public DateTimeFilterCondition(String fieldId, FilterOperator operator, FilterDateTimeType type) { + this(fieldId, operator, new DateTimeValue(type)); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeSheetField.java new file mode 100644 index 00000000..2c2c47c2 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Date time sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class DateTimeSheetField extends SheetField { + private final DateTimeFieldProperty propertyDateTime; + + /** + * Instantiates a new Date time sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyDateTime the property date time + */ + public DateTimeSheetField(String fieldId, SheetFieldType fieldType, DateTimeFieldProperty propertyDateTime) { + super(fieldId, fieldType); + this.propertyDateTime = propertyDateTime; + } + + /** + * Instantiates a new Date time sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyDateTime the property date time + */ + @JsonCreator + public DateTimeSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_date_time") DateTimeFieldProperty propertyDateTime) { + super(fieldId, fieldType, fieldTitle); + this.propertyDateTime = propertyDateTime; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeValue.java new file mode 100644 index 00000000..c6829a1e --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeValue.java @@ -0,0 +1,44 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.FilterDateTimeType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Date time value. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class DateTimeValue { + private final FilterDateTimeType type; + private final List value; + + /** + * Instantiates a new Date time value. + * + * @param type the type + * @param value the value + */ + @JsonCreator + public DateTimeValue(@JsonProperty("type") FilterDateTimeType type, + @JsonProperty("value") List value) { + this.type = type; + this.value = value; + } + + /** + * Instantiates a new Date time value. + * + * @param type the type + */ + public DateTimeValue(FilterDateTimeType type) { + this(type, null); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelFieldsRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelFieldsRequest.java new file mode 100644 index 00000000..01ec142e --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelFieldsRequest.java @@ -0,0 +1,16 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Data; + +import java.util.List; + +/** + * @author dax + * @since 2024/9/5 + */ +@Data +public class DelFieldsRequest { + private final String docid; + private final String sheetId; + private final List fieldIds; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelSheetRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelSheetRequest.java new file mode 100644 index 00000000..8cea2139 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelSheetRequest.java @@ -0,0 +1,17 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +/** + * @author dax + * @since 2024/8/30 + */ +@ToString +@RequiredArgsConstructor +@Getter +public class DelSheetRequest { + private final String docid; + private final String sheetId; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelViewRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelViewRequest.java new file mode 100644 index 00000000..50a13fa7 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelViewRequest.java @@ -0,0 +1,16 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Data; + +import java.util.Set; + +/** + * @author dax + * @since 2024/9/2 + */ +@Data +public class DelViewRequest { + private final String docid; + private final String sheetId; + private final Set viewIds; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/FilterSpec.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/FilterSpec.java new file mode 100644 index 00000000..290f1894 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/FilterSpec.java @@ -0,0 +1,56 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.Conjunction; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Filter spec. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class FilterSpec { + private final Conjunction conjunction; + private final List conditions; + + + /** + * Instantiates a new Filter spec. + * + * @param conjunction the conjunction + * @param conditions the conditions + */ + @JsonCreator + FilterSpec(@JsonProperty("conjunction") Conjunction conjunction, + @JsonProperty("conditions") List conditions) { + this.conjunction = conjunction; + this.conditions = conditions; + } + + /** + * And filter spec. + * + * @param conditions the conditions + * @return the filter spec + */ + public FilterSpec and(List conditions) { + return new FilterSpec(Conjunction.CONJUNCTION_AND, conditions); + } + + /** + * Or filter spec. + * + * @param conditions the conditions + * @return the filter spec + */ + public FilterSpec or(List conditions) { + return new FilterSpec(Conjunction.CONJUNCTION_OR, conditions); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/GroupSpec.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/GroupSpec.java new file mode 100644 index 00000000..0d3b6492 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/GroupSpec.java @@ -0,0 +1,40 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Sort spec. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class GroupSpec { + private final List groups; + + /** + * Instantiates a new Sort spec. + * + * @param groups the groups + */ + @JsonCreator + GroupSpec(@JsonProperty("sort_infos") List groups) { + this.groups = groups; + } + + /** + * From sort spec. + * + * @param groups the groups + * @return the sort spec + */ + public static GroupSpec from(List groups) { + return new GroupSpec(groups); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationFieldProperty.java new file mode 100644 index 00000000..0d40b74c --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationFieldProperty.java @@ -0,0 +1,46 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Location field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class LocationFieldProperty { + private final String inputType; + + /** + * Instantiates a new Location field property. + * + * @param inputType the input type + */ + @JsonCreator + LocationFieldProperty(@JsonProperty("input_type") String inputType) { + this.inputType = inputType; + } + + /** + * 手动输入 + * + * @return the location field property + */ + public static LocationFieldProperty manual() { + return new LocationFieldProperty("LOCATION_INPUT_TYPE_MANUAL"); + } + + /** + * 自动定位 + * + * @return the location field property + */ + public static LocationFieldProperty auto() { + return new LocationFieldProperty("LOCATION_INPUT_TYPE_AUTO"); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationSheetField.java new file mode 100644 index 00000000..bed134a3 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Location sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class LocationSheetField extends SheetField { + private final LocationFieldProperty propertyLocation; + + /** + * Instantiates a new Location sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyLocation the property location + */ + public LocationSheetField(String fieldId, SheetFieldType fieldType, LocationFieldProperty propertyLocation) { + super(fieldId, fieldType); + this.propertyLocation = propertyLocation; + } + + /** + * Instantiates a new Location sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyLocation the property location + */ + @JsonCreator + public LocationSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_location") LocationFieldProperty propertyLocation) { + super(fieldId, fieldType, fieldTitle); + this.propertyLocation = propertyLocation; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ModifiedTimeSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ModifiedTimeSheetField.java new file mode 100644 index 00000000..98cdcc83 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ModifiedTimeSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Modified time sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class ModifiedTimeSheetField extends SheetField { + private final TimeFieldProperty propertyModifiedTime; + + /** + * Instantiates a new ModifiedTime sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyModifiedTime the property modified time + */ + public ModifiedTimeSheetField(String fieldId, SheetFieldType fieldType, TimeFieldProperty propertyModifiedTime) { + super(fieldId, fieldType); + this.propertyModifiedTime = propertyModifiedTime; + } + + /** + * Instantiates a new Modified time sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyModifiedTime the property modified time + */ + @JsonCreator + public ModifiedTimeSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_modified_time") TimeFieldProperty propertyModifiedTime) { + super(fieldId, fieldType, fieldTitle); + this.propertyModifiedTime = propertyModifiedTime; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFieldProperty.java new file mode 100644 index 00000000..a1d8a283 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFieldProperty.java @@ -0,0 +1,44 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.DecimalPlaces; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Number field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class NumberFieldProperty { + private final Integer decimalPlaces; + private final Boolean useSeparate; + + /** + * Instantiates a new Number field property. + * + * @param decimalPlaces the decimal places + * @param useSeparate the use separate + */ + @JsonCreator + NumberFieldProperty(@JsonProperty("decimal_places") Integer decimalPlaces, + @JsonProperty("use_separate") Boolean useSeparate) { + this.decimalPlaces = decimalPlaces; + this.useSeparate = useSeparate; + } + + /** + * Of number field property. + * + * @param decimalPlaces the decimal places + * @param useSeparate the use separate + * @return the number field property + */ + public NumberFieldProperty of(DecimalPlaces decimalPlaces, boolean useSeparate) { + return new NumberFieldProperty(decimalPlaces.getType(), useSeparate); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFilterCondition.java new file mode 100644 index 00000000..3322d4d8 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFilterCondition.java @@ -0,0 +1,47 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.FilterOperator; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.Set; + +/** + * The type Number filter condition. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class NumberFilterCondition extends AbstractFilterCondition { + private final NumberValue numberValue; + + /** + * Instantiates a new Number filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param numberValue the number value + */ + @JsonCreator + NumberFilterCondition(@JsonProperty("field_id") String fieldId, + @JsonProperty("operator") FilterOperator operator, + @JsonProperty("number_value") NumberValue numberValue) { + super(fieldId, operator); + this.numberValue = numberValue; + } + + /** + * Instantiates a new Number filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param value the value + */ + public NumberFilterCondition(String fieldId, FilterOperator operator, Set value) { + this(fieldId, operator, new NumberValue(value)); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberSheetField.java new file mode 100644 index 00000000..898aa6f2 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Number sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class NumberSheetField extends SheetField { + private final NumberFieldProperty propertyNumber; + + /** + * Instantiates a new Number sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyNumber the property number + */ + public NumberSheetField(String fieldId, SheetFieldType fieldType, NumberFieldProperty propertyNumber) { + super(fieldId, fieldType); + this.propertyNumber = propertyNumber; + } + + /** + * Instantiates a new Number sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyNumber the property number + */ + @JsonCreator + public NumberSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_number") NumberFieldProperty propertyNumber) { + super(fieldId, fieldType, fieldTitle); + this.propertyNumber = propertyNumber; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberValue.java new file mode 100644 index 00000000..97371c9f --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberValue.java @@ -0,0 +1,14 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Data; + +import java.util.Set; + +/** + * @author dax + * @since 2024/9/2 + */ +@Data +public class NumberValue { + private final Set value; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressFieldProperty.java new file mode 100644 index 00000000..05de7656 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressFieldProperty.java @@ -0,0 +1,41 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.DecimalPlaces; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Progress field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class ProgressFieldProperty { + private final Integer decimalPlaces; + + + /** + * Instantiates a new Progress field property. + * + * @param decimalPlaces the decimal places + */ + @JsonCreator + ProgressFieldProperty(@JsonProperty("decimal_places") Integer decimalPlaces) { + this.decimalPlaces = decimalPlaces; + + } + + /** + * Of progress field property. + * + * @param decimalPlaces the decimal places + * @return the number field property + */ + public ProgressFieldProperty of(DecimalPlaces decimalPlaces) { + return new ProgressFieldProperty(decimalPlaces.getType()); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressSheetField.java new file mode 100644 index 00000000..0be99d5b --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Progress sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class ProgressSheetField extends SheetField { + private final ProgressFieldProperty propertyProgress; + + /** + * Instantiates a new Progress sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyProgress the property progress + */ + public ProgressSheetField(String fieldId, SheetFieldType fieldType, ProgressFieldProperty propertyProgress) { + super(fieldId, fieldType); + this.propertyProgress = propertyProgress; + } + + /** + * Instantiates a new Progress sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyProgress the property progress + */ + @JsonCreator + public ProgressSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_progress") ProgressFieldProperty propertyProgress) { + super(fieldId, fieldType, fieldTitle); + this.propertyProgress = propertyProgress; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceFieldProperty.java new file mode 100644 index 00000000..ff11077b --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceFieldProperty.java @@ -0,0 +1,30 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * @author dax + * @since 2024/9/4 + */ +@ToString +@Getter +public class ReferenceFieldProperty { + private final String subId; + private final String filedId; + private final String isMultiple; + private final String viewId; + + @JsonCreator + public ReferenceFieldProperty(@JsonProperty("sub_id") String subId, + @JsonProperty("filed_id") String filedId, + @JsonProperty("is_multiple") String isMultiple, + @JsonProperty("view_id") String viewId) { + this.subId = subId; + this.filedId = filedId; + this.isMultiple = isMultiple; + this.viewId = viewId; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceSheetField.java new file mode 100644 index 00000000..f0c75114 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Reference sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class ReferenceSheetField extends SheetField { + private final ReferenceFieldProperty propertyReference; + + /** + * Instantiates a new Reference sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyReference the property reference + */ + public ReferenceSheetField(String fieldId, SheetFieldType fieldType, ReferenceFieldProperty propertyReference) { + super(fieldId, fieldType); + this.propertyReference = propertyReference; + } + + /** + * Instantiates a new Reference sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyReference the property reference + */ + @JsonCreator + public ReferenceSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_reference") ReferenceFieldProperty propertyReference) { + super(fieldId, fieldType, fieldTitle); + this.propertyReference = propertyReference; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldOption.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldOption.java new file mode 100644 index 00000000..4e52c324 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldOption.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SelectFieldStyle; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Select field option. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class SelectFieldOption { + private final String id; + private final String text; + private final Integer style; + + /** + * Instantiates a new Select field option. + * + * @param id the id + * @param text the text + * @param style the style + */ + @JsonCreator + SelectFieldOption(@JsonProperty("id") String id, + @JsonProperty("text") String text, + @JsonProperty("style") Integer style) { + this.id = id; + this.text = text; + this.style = style; + } + + /** + * Instantiates a new Select field option. + * + * @param id the id + * @param text the text + * @param style the style + */ + public SelectFieldOption(String id, String text, SelectFieldStyle style) { + this(id, text, style.getStyle()); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldProperty.java new file mode 100644 index 00000000..f58f8839 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldProperty.java @@ -0,0 +1,34 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Select field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class SelectFieldProperty { + private final Boolean isQuickAdd; + private final List options; + + /** + * Instantiates a new Select field property. + * + * @param isQuickAdd the is quick add + * @param options the options + */ + @JsonCreator + public SelectFieldProperty(@JsonProperty("isQuickAdd") Boolean isQuickAdd, + @JsonProperty("options") List options) { + this.isQuickAdd = isQuickAdd; + this.options = options; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectSheetField.java new file mode 100644 index 00000000..72e306c3 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Select sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class SelectSheetField extends SheetField { + private final SelectFieldProperty propertySelect; + + /** + * Instantiates a new Select sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertySelect the property select + */ + public SelectSheetField(String fieldId, SheetFieldType fieldType, SelectFieldProperty propertySelect) { + super(fieldId, fieldType); + this.propertySelect = propertySelect; + } + + /** + * Instantiates a new Select sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertySelect the property select + */ + @JsonCreator + public SelectSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_select") SelectFieldProperty propertySelect) { + super(fieldId, fieldType, fieldTitle); + this.propertySelect = propertySelect; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetField.java new file mode 100644 index 00000000..953b11ed --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetField.java @@ -0,0 +1,76 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.annotation.JsonSubTypes; +import com.fasterxml.jackson.annotation.JsonTypeInfo; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Sheet field. + * + * @author dax + * @since 2024 /9/4 + */ +@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, + include = JsonTypeInfo.As.EXISTING_PROPERTY, + property = "fieldType", visible = true) +@JsonSubTypes({ + @JsonSubTypes.Type(value = SheetField.class, name = "FIELD_TYPE_TEXT"), + @JsonSubTypes.Type(value = NumberSheetField.class, name = "FIELD_TYPE_NUMBER"), + @JsonSubTypes.Type(value = CurrencySheetField.class, name = "FIELD_TYPE_CHECKBOX"), + @JsonSubTypes.Type(value = DateTimeSheetField.class, name = "FIELD_TYPE_DATE_TIME"), + @JsonSubTypes.Type(value = SheetField.class, name = "FIELD_TYPE_IMAGE"), + @JsonSubTypes.Type(value = AttachmentSheetField.class, name = "FIELD_TYPE_ATTACHMENT"), + @JsonSubTypes.Type(value = UserSheetField.class, name = "FIELD_TYPE_USER"), + @JsonSubTypes.Type(value = UrlSheetField.class, name = "FIELD_TYPE_URL"), + @JsonSubTypes.Type(value = SelectSheetField.class, name = "FIELD_TYPE_SELECT"), + @JsonSubTypes.Type(value = UserSheetField.class, name = "FIELD_TYPE_CREATED_USER"), + @JsonSubTypes.Type(value = UserSheetField.class, name = "FIELD_TYPE_MODIFIED_USER"), + @JsonSubTypes.Type(value = CreatedTimeSheetField.class, name = "FIELD_TYPE_CREATED_TIME"), + @JsonSubTypes.Type(value = ModifiedTimeSheetField.class, name = "FIELD_TYPE_MODIFIED_TIME"), + @JsonSubTypes.Type(value = ProgressSheetField.class, name = "FIELD_TYPE_PROGRESS"), + @JsonSubTypes.Type(value = SheetField.class, name = "FIELD_TYPE_PHONE_NUMBER"), + @JsonSubTypes.Type(value = SheetField.class, name = "FIELD_TYPE_EMAIL"), + @JsonSubTypes.Type(value = SingleSelectSheetField.class, name = "FIELD_TYPE_SINGLE_SELECT"), + @JsonSubTypes.Type(value = ReferenceSheetField.class, name = "FIELD_TYPE_REFERENCE"), + @JsonSubTypes.Type(value = LocationSheetField.class, name = "FIELD_TYPE_LOCATION"), + @JsonSubTypes.Type(value = CurrencySheetField.class, name = "FIELD_TYPE_CURRENCY"), + @JsonSubTypes.Type(value = WwGroupSheetField.class, name = "FIELD_TYPE_WWGROUP"), + @JsonSubTypes.Type(value = AutoNumberSheetField.class, name = "FIELD_TYPE_AUTONUMBER") +}) +@ToString +@Getter +public class SheetField { + private final String fieldId; + private final SheetFieldType fieldType; + private final String fieldTitle; + + /** + * Instantiates a new Sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + */ + public SheetField(String fieldId, SheetFieldType fieldType) { + this(fieldId, fieldType, null); + } + + /** + * Instantiates a new Sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + */ + @JsonCreator + public SheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle) { + this.fieldId = fieldId; + this.fieldType = fieldType; + this.fieldTitle = fieldTitle; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewDetail.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewDetail.java new file mode 100644 index 00000000..92facd69 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewDetail.java @@ -0,0 +1,14 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Data; +import lombok.EqualsAndHashCode; + +/** + * @author dax + * @since 2024/9/4 + */ +@EqualsAndHashCode(callSuper = true) +@Data +public class SheetViewDetail extends SheetViewInfo { + private ViewProperty property; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewInfo.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewInfo.java new file mode 100644 index 00000000..dc2196ea --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewInfo.java @@ -0,0 +1,15 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SmartSheetViewType; +import lombok.Data; + +/** + * @author dax + * @since 2024/9/2 + */ +@Data +public class SheetViewInfo { + private String viewId; + private String viewTitle; + private SmartSheetViewType viewType; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SingleSelectSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SingleSelectSheetField.java new file mode 100644 index 00000000..67b79cdb --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SingleSelectSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Single select sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class SingleSelectSheetField extends SheetField { + private final SelectFieldProperty propertySingleSelect; + + /** + * Instantiates a new Single select sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertySingleSelect the propertySingleSelect + */ + public SingleSelectSheetField(String fieldId, SheetFieldType fieldType, SelectFieldProperty propertySingleSelect) { + super(fieldId, fieldType); + this.propertySingleSelect = propertySingleSelect; + } + + /** + * Instantiates a new Single select sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertySingleSelect the propertySingleSelect + */ + @JsonCreator + public SingleSelectSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_single_select") SelectFieldProperty propertySingleSelect) { + super(fieldId, fieldType, fieldTitle); + this.propertySingleSelect = propertySingleSelect; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SmartSheetProperties.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SmartSheetProperties.java new file mode 100644 index 00000000..ca24548e --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SmartSheetProperties.java @@ -0,0 +1,46 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Sheet properties. + * + * @author dax + * @since 2024 /8/30 + */ +@ToString +@Getter +public class SmartSheetProperties { + private final String title; + private final Integer index; + private final String sheetId; + + /** + * Instantiates a new Sheet properties. + * + * @param title the title + * @param index the index + */ + public SmartSheetProperties(String title, Integer index) { + this(title, index, null); + } + + /** + * Instantiates a new Sheet properties. + * + * @param title the title + * @param index the index + * @param sheetId the sheet id + */ + @JsonCreator + public SmartSheetProperties(@JsonProperty("title") String title, + @JsonProperty("index") Integer index, + @JsonProperty("sheet_id") String sheetId) { + this.title = title; + this.index = index; + this.sheetId = sheetId; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortField.java new file mode 100644 index 00000000..f19d7893 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortField.java @@ -0,0 +1,51 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Sort field. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class SortField { + private final String fieldId; + private final Boolean desc; + + /** + * Instantiates a new Sort field. + * + * @param fieldId the field id + * @param desc the desc + */ + @JsonCreator + SortField(@JsonProperty("field_id") String fieldId, @JsonProperty("desc") Boolean desc) { + this.fieldId = fieldId; + this.desc = desc; + } + + /** + * Desc sort field. + * + * @param fieldId the field id + * @return the sort field + */ + public static SortField desc(String fieldId) { + return new SortField(fieldId, true); + } + + /** + * Asc sort field. + * + * @param fieldId the field id + * @return the sort field + */ + public static SortField asc(String fieldId) { + return new SortField(fieldId, false); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortSpec.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortSpec.java new file mode 100644 index 00000000..af3f5120 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortSpec.java @@ -0,0 +1,40 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.List; + +/** + * The type Sort spec. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class SortSpec { + private final List sortInfos; + + /** + * Instantiates a new Sort spec. + * + * @param sortInfos the sort infos + */ + @JsonCreator + SortSpec(@JsonProperty("sort_infos") List sortInfos) { + this.sortInfos = sortInfos; + } + + /** + * From sort spec. + * + * @param sortInfos the sort infos + * @return the sort spec + */ + public static SortSpec from(List sortInfos) { + return new SortSpec(sortInfos); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringFilterCondition.java new file mode 100644 index 00000000..c2c4bb58 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringFilterCondition.java @@ -0,0 +1,47 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.FilterOperator; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.Set; + +/** + * The type String filter condition. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class StringFilterCondition extends AbstractFilterCondition { + private final StringValue stringValue; + + /** + * Instantiates a new String filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param stringValue the value + */ + @JsonCreator + StringFilterCondition(@JsonProperty("field_id") String fieldId, + @JsonProperty("operator") FilterOperator operator, + @JsonProperty("string_value") StringValue stringValue) { + super(fieldId, operator); + this.stringValue = stringValue; + } + + /** + * Instantiates a new String filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param value the value + */ + public StringFilterCondition(String fieldId, FilterOperator operator, Set value) { + this(fieldId, operator, new StringValue(value)); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringValue.java new file mode 100644 index 00000000..285e6ea1 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringValue.java @@ -0,0 +1,14 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Data; + +import java.util.Set; + +/** + * @author dax + * @since 2024/9/2 + */ +@Data +public class StringValue { + private final Set value; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/TimeFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/TimeFieldProperty.java new file mode 100644 index 00000000..b09d7ecb --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/TimeFieldProperty.java @@ -0,0 +1,39 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.DateTimeFieldFormatter; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Time field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class TimeFieldProperty { + private final String format; + + /** + * Instantiates a new Time field property. + * + * @param format the format + */ + @JsonCreator + TimeFieldProperty(@JsonProperty("format") String format) { + this.format = format; + } + + /** + * Of time field property. + * + * @param formatter the formatter + * @return the date time field property + */ + public static TimeFieldProperty of(DateTimeFieldFormatter formatter) { + return new TimeFieldProperty(formatter.getFormat()); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateSheetRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateSheetRequest.java new file mode 100644 index 00000000..9373cbbb --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateSheetRequest.java @@ -0,0 +1,42 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Getter; +import lombok.ToString; + +/** + * The type Add sheet request. + * + * @author dax + * @since 2024 /8/30 + */ +@ToString +@Getter +public class UpdateSheetRequest { + + private final String docid; + private final SmartSheetProperties properties; + + + /** + * Instantiates a new Add sheet request. + * + * @param docId the doc id + * @param sheetId the sheet id + */ + public UpdateSheetRequest(String docId, String sheetId) { + this(docId, sheetId, null); + } + + /** + * Instantiates a new Add sheet request. + * + * @param docId the doc id + * @param sheetId the sheet id + * @param title the title + */ + public UpdateSheetRequest(String docId, String sheetId, String title) { + this.docid = docId; + this.properties = new SmartSheetProperties(title, null, sheetId); + } + +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateViewRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateViewRequest.java new file mode 100644 index 00000000..1696c60b --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateViewRequest.java @@ -0,0 +1,55 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Getter; +import lombok.ToString; + +/** + * The type Update view request. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class UpdateViewRequest { + private final String docid; + private final String sheetId; + private final String viewId; + private String viewTitle; + private ViewProperty property; + + /** + * Instantiates a new Update view request. + * + * @param docid the docid + * @param sheetId the sheet id + * @param viewId the view id + */ + public UpdateViewRequest(String docid, String sheetId, String viewId) { + this.docid = docid; + this.sheetId = sheetId; + this.viewId = viewId; + } + + /** + * View title update view request. + * + * @param viewTitle the view title + * @return the update view request + */ + public UpdateViewRequest viewTitle(String viewTitle) { + this.viewTitle = viewTitle; + return this; + } + + /** + * Property update view request. + * + * @param property the property + * @return the update view request + */ + public UpdateViewRequest property(ViewProperty property) { + this.property = property; + return this; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlFieldProperty.java new file mode 100644 index 00000000..ea53b78c --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlFieldProperty.java @@ -0,0 +1,46 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Url field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class UrlFieldProperty { + private final String type; + + /** + * Instantiates a new Url field property. + * + * @param type the type + */ + @JsonCreator + UrlFieldProperty(@JsonProperty("type") String type) { + this.type = type; + } + + /** + * 文字 + * + * @return the url field property + */ + public static UrlFieldProperty pureText() { + return new UrlFieldProperty("LINK_TYPE_PURE_TEXT"); + } + + /** + * 图标文字 + * + * @return the url field property + */ + public static UrlFieldProperty iconText() { + return new UrlFieldProperty("LINK_TYPE_ICON_TEXT"); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlSheetField.java new file mode 100644 index 00000000..b0f22f41 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Url sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class UrlSheetField extends SheetField { + private final UrlFieldProperty propertyUrl; + + /** + * Instantiates a new Url sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyUrl the property url + */ + public UrlSheetField(String fieldId, SheetFieldType fieldType, UrlFieldProperty propertyUrl) { + super(fieldId, fieldType); + this.propertyUrl = propertyUrl; + } + + /** + * Instantiates a new Url sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyUrl the property url + */ + @JsonCreator + public UrlSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_url") UrlFieldProperty propertyUrl) { + super(fieldId, fieldType, fieldTitle); + this.propertyUrl = propertyUrl; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFieldProperty.java new file mode 100644 index 00000000..0eee929d --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFieldProperty.java @@ -0,0 +1,32 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type User field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class UserFieldProperty { + private final Boolean isMultiple; + private final Boolean isNotified; + + /** + * Instantiates a new User field property. + * + * @param isMultiple the is multiple + * @param isNotified the is notified + */ + @JsonCreator + public UserFieldProperty(@JsonProperty("is_multiple") Boolean isMultiple, + @JsonProperty("is_notified") Boolean isNotified) { + this.isMultiple = isMultiple; + this.isNotified = isNotified; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFilterCondition.java new file mode 100644 index 00000000..f50c3ee1 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFilterCondition.java @@ -0,0 +1,47 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.FilterOperator; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.Set; + +/** + * The type User filter condition. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class UserFilterCondition extends AbstractFilterCondition { + private final StringValue userValue; + + /** + * Instantiates a new User filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param userValue the user value + */ + @JsonCreator + UserFilterCondition(@JsonProperty("field_id") String fieldId, + @JsonProperty("operator") FilterOperator operator, + @JsonProperty("user_value") StringValue userValue) { + super(fieldId, operator); + this.userValue = userValue; + } + + /** + * Instantiates a new User filter condition. + * + * @param fieldId the field id + * @param operator the operator + * @param value the value + */ + public UserFilterCondition(String fieldId, FilterOperator operator, Set value) { + this(fieldId, operator, new StringValue(value)); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserSheetField.java new file mode 100644 index 00000000..a0c83dd4 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type User sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class UserSheetField extends SheetField { + private final UserFieldProperty propertyUser; + + /** + * Instantiates a new User sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyUser the property user + */ + public UserSheetField(String fieldId, SheetFieldType fieldType, UserFieldProperty propertyUser) { + super(fieldId, fieldType); + this.propertyUser = propertyUser; + } + + /** + * Instantiates a new User sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyUser the property user + */ + @JsonCreator + public UserSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_user") UserFieldProperty propertyUser) { + super(fieldId, fieldType, fieldTitle); + this.propertyUser = propertyUser; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewDateRange.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewDateRange.java new file mode 100644 index 00000000..990396b6 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewDateRange.java @@ -0,0 +1,13 @@ +package cn.felord.domain.wedoc.smartsheet; + +import lombok.Data; + +/** + * @author dax + * @since 2024/9/2 + */ +@Data +public class ViewDateRange { + private final String startDateFieldId; + private final String endDateFieldId; +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewProperty.java new file mode 100644 index 00000000..2cb86bc4 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewProperty.java @@ -0,0 +1,137 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +import java.util.Map; + +/** + * The type View property. + * + * @author dax + * @since 2024 /9/2 + */ +@ToString +@Getter +public class ViewProperty { + private Boolean autoSort; + private SortSpec sortSpec; + private GroupSpec groupSpec; + private FilterSpec filterSpec; + private Boolean isFieldStatEnabled; + private Map fieldVisibility; + private Integer frozenFieldCount; + + /** + * Instantiates a new View property. + */ + public ViewProperty() { + } + + /** + * Instantiates a new View property. + * + * @param autoSort the auto sort + * @param sortSpec the sort spec + * @param groupSpec the group spec + * @param filterSpec the filter spec + * @param isFieldStatEnabled the is field stat enabled + * @param fieldVisibility the field visibility + * @param frozenFieldCount the frozen field count + */ + @JsonCreator + ViewProperty(@JsonProperty("auto_sort") Boolean autoSort, + @JsonProperty("sort_spec") SortSpec sortSpec, + @JsonProperty("group_spec") GroupSpec groupSpec, + @JsonProperty("filter_spec") FilterSpec filterSpec, + @JsonProperty("is_field_stat_enabled") Boolean isFieldStatEnabled, + @JsonProperty("field_visibility") Map fieldVisibility, + @JsonProperty("frozen_field_count") Integer frozenFieldCount) { + this.autoSort = autoSort; + this.sortSpec = sortSpec; + this.groupSpec = groupSpec; + this.filterSpec = filterSpec; + this.isFieldStatEnabled = isFieldStatEnabled; + this.fieldVisibility = fieldVisibility; + this.frozenFieldCount = frozenFieldCount; + } + + /** + * Auto sort view property. + * + * @param autoSort the auto sort + * @return the view property + */ + public ViewProperty autoSort(Boolean autoSort) { + this.autoSort = autoSort; + return this; + } + + /** + * Sort spec view property. + * + * @param sortSpec the sort spec + * @return the view property + */ + public ViewProperty sortSpec(SortSpec sortSpec) { + this.sortSpec = sortSpec; + return this; + } + + /** + * Group spec view property. + * + * @param groupSpec the group spec + * @return the view property + */ + public ViewProperty groupSpec(GroupSpec groupSpec) { + this.groupSpec = groupSpec; + return this; + } + + /** + * Filter spec view property. + * + * @param filterSpec the filter spec + * @return the view property + */ + public ViewProperty filterSpec(FilterSpec filterSpec) { + this.filterSpec = filterSpec; + return this; + } + + /** + * Field stat enabled view property. + * + * @param fieldStatEnabled the field stat enabled + * @return the view property + */ + public ViewProperty fieldStatEnabled(Boolean fieldStatEnabled) { + isFieldStatEnabled = fieldStatEnabled; + return this; + } + + /** + * Field visibility view property. + * + * @param fieldVisibility the field visibility + * @return the view property + */ + public ViewProperty fieldVisibility(Map fieldVisibility) { + this.fieldVisibility = fieldVisibility; + return this; + } + + /** + * Frozen field count view property. + * + * @param frozenFieldCount the frozen field count + * @return the view property + */ + public ViewProperty frozenFieldCount(Integer frozenFieldCount) { + this.frozenFieldCount = frozenFieldCount; + return this; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupFieldProperty.java new file mode 100644 index 00000000..fcf4f018 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupFieldProperty.java @@ -0,0 +1,28 @@ +package cn.felord.domain.wedoc.smartsheet; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type Ww group field property. + * + * @author dax + * @since 2024 /9/4 + */ +@ToString +@Getter +public class WwGroupFieldProperty { + private final Boolean allowMultiple; + + /** + * Instantiates a new Ww group field property. + * + * @param allowMultiple the allow multiple + */ + @JsonCreator + public WwGroupFieldProperty(@JsonProperty("allow_multiple") Boolean allowMultiple) { + this.allowMultiple = allowMultiple; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupSheetField.java new file mode 100644 index 00000000..d72007f4 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupSheetField.java @@ -0,0 +1,48 @@ +package cn.felord.domain.wedoc.smartsheet; + +import cn.felord.enumeration.SheetFieldType; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Getter; +import lombok.ToString; + +/** + * The type WwGroup sheet field. + * + * @author dax + * @since 2024 /9/5 + */ +@ToString +@Getter +public class WwGroupSheetField extends SheetField { + private final WwGroupFieldProperty propertyWwGroup; + + /** + * Instantiates a new WwGroup sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param propertyWwGroup the property WwGroup + */ + public WwGroupSheetField(String fieldId, SheetFieldType fieldType, WwGroupFieldProperty propertyWwGroup) { + super(fieldId, fieldType); + this.propertyWwGroup = propertyWwGroup; + } + + /** + * Instantiates a new WwGroup sheet field. + * + * @param fieldId the field id + * @param fieldType the field type + * @param fieldTitle the field title + * @param propertyWwGroup the property WwGroup + */ + @JsonCreator + public WwGroupSheetField(@JsonProperty("field_id") String fieldId, + @JsonProperty("field_type") SheetFieldType fieldType, + @JsonProperty("field_title") String fieldTitle, + @JsonProperty("property_ww_group") WwGroupFieldProperty propertyWwGroup) { + super(fieldId, fieldType, fieldTitle); + this.propertyWwGroup = propertyWwGroup; + } +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberFieldType.java b/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberFieldType.java new file mode 100644 index 00000000..ecc02db6 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberFieldType.java @@ -0,0 +1,18 @@ +package cn.felord.enumeration; + +/** + * The enum Number field type. + * + * @author dax + * @since 2024 /9/4 + */ +public enum AutoNumberFieldType { + /** + * 自增数字类型 + */ + NUMBER_TYPE_INCR, + /** + * 自定义类型 + */ + NUMBER_TYPE_CUSTOM +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberRuleType.java b/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberRuleType.java new file mode 100644 index 00000000..6bbbbad0 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberRuleType.java @@ -0,0 +1,25 @@ +package cn.felord.enumeration; + +/** + * 数字规则类型 + * + * @author dax + * @since 2024/9/4 + */ +public enum AutoNumberRuleType { + + /** + * 自增id + */ + NUMBER_RULE_TYPE_INCR, + + /** + * 固定字符 + */ + NUMBER_RULE_TYPE_FIXED_CHAR, + + /** + * 创建时间 + */ + NUMBER_RULE_TYPE_TIME +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/Conjunction.java b/wecom-objects/src/main/java/cn/felord/enumeration/Conjunction.java new file mode 100644 index 00000000..80f9b1a4 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/Conjunction.java @@ -0,0 +1,18 @@ +package cn.felord.enumeration; + +/** + * The enum Conjunction. + * + * @author dax + * @since 2024 /9/2 + */ +public enum Conjunction { + /** + * AND + */ + CONJUNCTION_AND, + /** + * OR + */ + CONJUNCTION_OR +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CurrencyType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CurrencyType.java new file mode 100644 index 00000000..7ad8ca3c --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CurrencyType.java @@ -0,0 +1,111 @@ +package cn.felord.enumeration; + +/** + * 货币符号类型 + * + * @author dax + * @since 2024 /9/4 + */ +public enum CurrencyType { + /** + * 人民币 + */ + CURRENCY_TYPE_CNY, + /** + * 美元 + */ + CURRENCY_TYPE_USD, + /** + * 欧元 + */ + CURRENCY_TYPE_EUR, + /** + * 英镑 + */ + CURRENCY_TYPE_GBP, + /** + * 日元 + */ + CURRENCY_TYPE_JPY, + /** + * 韩元 + */ + CURRENCY_TYPE_KRW, + /** + * 港元 + */ + CURRENCY_TYPE_HKD, + /** + * 澳门元 + */ + CURRENCY_TYPE_MOP, + /** + * 新台币 + */ + CURRENCY_TYPE_TWD, + /** + * 阿联酋迪拉姆 + */ + CURRENCY_TYPE_AED, + /** + * 澳大利亚元 + */ + CURRENCY_TYPE_AUD, + /** + * 巴西雷亚尔 + */ + CURRENCY_TYPE_BRL, + /** + * 加拿大元 + */ + CURRENCY_TYPE_CAD, + /** + * 瑞士法郎 + */ + CURRENCY_TYPE_CHF, + /** + * 印尼卢比 + */ + CURRENCY_TYPE_IDR, + /** + * 印度卢比 + */ + CURRENCY_TYPE_INR, + /** + * 墨西哥比索 + */ + CURRENCY_TYPE_MXN, + /** + * 马来西亚林吉特 + */ + CURRENCY_TYPE_MYR, + /** + * 菲律宾比索 + */ + CURRENCY_TYPE_PHP, + /** + * 波兰兹罗提 + */ + CURRENCY_TYPE_PLN, + /** + * 俄罗斯卢布 + */ + CURRENCY_TYPE_RUB, + /** + * 新加坡元 + */ + CURRENCY_TYPE_SGD, + /** + * 泰国铢 + */ + CURRENCY_TYPE_THB, + /** + * 土耳其里拉 + */ + CURRENCY_TYPE_TRY, + /** + * 越南盾 + */ + CURRENCY_TYPE_VND + +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DateTimeFieldFormatter.java b/wecom-objects/src/main/java/cn/felord/enumeration/DateTimeFieldFormatter.java new file mode 100644 index 00000000..4b3a3ad6 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DateTimeFieldFormatter.java @@ -0,0 +1,82 @@ +package cn.felord.enumeration; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonValue; + +import java.util.Arrays; + +/** + * The enum Date time field formatter. + * + * @author dax + * @since 2024 /9/4 + */ +public enum DateTimeFieldFormatter { + /** + * 2018 年 4 月 20 日 + */ + YYYY_MM_DD_CN("yyyy\"年\"m\"月\"d\"日\""), + /** + * 2018-04-20 + */ + YYYY_MM_DD("yyyy-mm-dd"), + /** + * 2018/4/20 + */ + YYYY_MM_DD_S("yyyy/m/d"), + + /** + * 4 月 20 日 + */ + MM_DD_CN("m\"月\"d\"日\""), + /** + * 2018 年 4 月 20 日 星期五 + */ + YYYY_MM_DD_W_CN("yyyy\"年\"m\"月\"d\"日\" dddd"), + /** + * 2018 年 4 月 20 日 14:00 + */ + YYYY_MM_DD_HH_MM_CN("yyyy\"年\"m\"月\"d\"日\" hh:mm"), + /** + * 2018-04-20 14:00 + */ + YYYY_MM_DD_HH_MM("yyyy-mm-dd hh:mm"), + /** + * 4/20/2018 + */ + M_D_YYYY("m/d/yyyy"), + /** + * 20/4/2018 + */ + D_M_YYYY("m/d/yyyy"); + private final String format; + + DateTimeFieldFormatter(String format) { + this.format = format; + } + + /** + * Gets format. + * + * @return the format + */ + @JsonValue + public String getFormat() { + return format; + } + + + /** + * Deserialize DateTimeFieldFormatter. + * + * @param format the format + * @return the DateTimeFieldFormatter + */ + @JsonCreator + public static DateTimeFieldFormatter deserialize(String format) { + return Arrays.stream(DateTimeFieldFormatter.values()) + .filter(contactType -> contactType.format.equals(format)) + .findFirst() + .orElse(null); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DecimalPlaces.java b/wecom-objects/src/main/java/cn/felord/enumeration/DecimalPlaces.java new file mode 100644 index 00000000..89af57e4 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DecimalPlaces.java @@ -0,0 +1,86 @@ +/* + * Copyright (c) 2023. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package cn.felord.enumeration; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonValue; + +import java.util.Arrays; + +/** + * 小数点后的位数 + * + * @author dax + * @since 2021 /9/9 9:22 + */ +public enum DecimalPlaces { + + /** + * 显示原值 + */ + ORIGIN(-1), + /** + * 代表整数 + */ + INTEGER(0), + /** + * 精确到小数点后一位(1.0) + */ + DIGIT_1(1), + /** + * 精确到小数点后两位(1.00) + */ + DIGIT_2(2), + /** + * 精确到小数点后三位(1.000) + */ + DIGIT_3(3), + /** + * 精确到小数点后四位(1.0000) + */ + DIGIT_4(4); + + + private final int type; + + DecimalPlaces(int type) { + this.type = type; + } + + /** + * Gets type. + * + * @return the type + */ + @JsonValue + public int getType() { + return type; + } + + /** + * Deserialize DecimalPlaces + * + * @param type the type + * @return the DecimalPlaces + */ + @JsonCreator + public static DecimalPlaces deserialize(int type) { + return Arrays.stream(DecimalPlaces.values()) + .filter(contactType -> contactType.type == type) + .findFirst() + .orElse(null); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FilterDateTimeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FilterDateTimeType.java new file mode 100644 index 00000000..98bcddf7 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FilterDateTimeType.java @@ -0,0 +1,63 @@ +package cn.felord.enumeration; + +/** + * 日期值类型 + * + * @author dax + * @since 2024 /9/2 + */ +public enum FilterDateTimeType { + + /** + * 具体时间 + */ + DATE_TIME_TYPE_DETAIL_DATE, + /** + * 具体时间范围 + */ + DATE_TIME_TYPE_DETAIL_DATE_RANGE, + /** + * 今天 + */ + DATE_TIME_TYPE_TODAY, + /** + * 明天 + */ + DATE_TIME_TYPE_TOMORROW, + /** + * 昨天 + */ + DATE_TIME_TYPE_YESTERDAY, + /** + * 本周 + */ + DATE_TIME_TYPE_CURRENT_WEEK, + /** + * 上周 + */ + DATE_TIME_TYPE_LAST_WEEK, + /** + * 本月 + */ + DATE_TIME_TYPE_CURRENT_MONTH, + /** + * 过去 7 天内 + */ + DATE_TIME_TYPE_THE_PAST_7_DAYS, + /** + * 接下来 7 天内 + */ + DATE_TIME_TYPE_THE_NEXT_7_DAYS, + /** + * 上月 + */ + DATE_TIME_TYPE_LAST_MONTH, + /** + * 过去 30 天内 + */ + DATE_TIME_TYPE_THE_PAST_30_DAYS, + /** + * 接下来 30 天内 + */ + DATE_TIME_TYPE_THE_NEXT_30_DAYS +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FilterOperator.java b/wecom-objects/src/main/java/cn/felord/enumeration/FilterOperator.java new file mode 100644 index 00000000..622937df --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FilterOperator.java @@ -0,0 +1,64 @@ +package cn.felord.enumeration; + +/** + * 筛选值判断操作类型 + * + * @author dax + * @since 2024 /9/2 + */ +public enum FilterOperator { + + /** + * 未知 + */ + OPERATOR_UNKNOWN, + + /** + * 等于 + */ + OPERATOR_IS, + + /** + * 不等于 + */ + OPERATOR_IS_NOT, + + /** + * 包含 + */ + OPERATOR_CONTAINS, + + /** + * 不包含 + */ + OPERATOR_DOES_NOT_CONTAIN, + + /** + * 大于 + */ + OPERATOR_IS_GREATER, + + /** + * 大于或等于 + */ + OPERATOR_IS_GREATER_OR_EQUAL, + + /** + * 小于 + */ + OPERATOR_IS_LESS, + + /** + * 小于或等于 + */ + OPERATOR_IS_LESS_OR_EQUAL, + + /** + * 为空 + */ + OPERATOR_IS_EMPTY, + /** + * 不为空 + */ + OPERATOR_IS_NOT_EMPTY +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SelectFieldStyle.java b/wecom-objects/src/main/java/cn/felord/enumeration/SelectFieldStyle.java new file mode 100644 index 00000000..a898214d --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SelectFieldStyle.java @@ -0,0 +1,94 @@ +/* + * Copyright (c) 2023. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package cn.felord.enumeration; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonValue; + +import java.util.Arrays; + +/** + * 多选选项样式颜色 + * + * @author dax + * @since 2021 /9/9 9:22 + */ +public enum SelectFieldStyle { + + /** + * 浅红 + */ + LIGHT_RED(1), + /** + * 浅橙 + */ + LIGHT_ORANGE(2), + /** + * 浅天蓝 + */ + LIGHT_SKY_BLUE(3), + /** + * 浅绿 + */ + AQUA(4), + /** + * 浅紫 + */ + LIGHT_PURPLE(5), + /** + * 浅粉红 + */ + LIGHT_PINK(6), + /** + * 浅灰 + */ + LIGHT_GRAY(7), + /** + * 白 + */ + WHITE(8); + + + private final int style; + + SelectFieldStyle(int style) { + this.style = style; + } + + /** + * Gets style. + * + * @return the style + */ + @JsonValue + public int getStyle() { + return style; + } + + /** + * Deserialize select field style. + * + * @param style the style + * @return the select field style + */ + @JsonCreator + public static SelectFieldStyle deserialize(int style) { + return Arrays.stream(SelectFieldStyle.values()) + .filter(contactType -> contactType.style == style) + .findFirst() + .orElse(null); + } +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SheetFieldType.java b/wecom-objects/src/main/java/cn/felord/enumeration/SheetFieldType.java new file mode 100644 index 00000000..db7e688c --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SheetFieldType.java @@ -0,0 +1,99 @@ +package cn.felord.enumeration; + +/** + * The enum Sheet field type. + * + * @author dax + * @since 2024 /9/4 + */ +public enum SheetFieldType { + + /** + * 文本 + */ + FIELD_TYPE_TEXT, + /** + * 数字 + */ + FIELD_TYPE_NUMBER, + /** + * 复选框 + */ + FIELD_TYPE_CHECKBOX, + /** + * 日期 + */ + FIELD_TYPE_DATE_TIME, + /** + * 图片 + */ + FIELD_TYPE_IMAGE, + /** + * 文件 + */ + FIELD_TYPE_ATTACHMENT, + /** + * 成员 + */ + FIELD_TYPE_USER, + /** + * 超链接 + */ + FIELD_TYPE_URL, + /** + * 多选 + */ + FIELD_TYPE_SELECT, + /** + * 创建人 + */ + FIELD_TYPE_CREATED_USER, + /** + * 最后编辑人 + */ + FIELD_TYPE_MODIFIED_USER, + /** + * 创建时间 + */ + FIELD_TYPE_CREATED_TIME, + /** + * 最后编辑时间 + */ + FIELD_TYPE_MODIFIED_TIME, + /** + * 进度 + */ + FIELD_TYPE_PROGRESS, + /** + * 电话 + */ + FIELD_TYPE_PHONE_NUMBER, + /** + * 邮件 + */ + FIELD_TYPE_EMAIL, + /** + * 单选 + */ + FIELD_TYPE_SINGLE_SELECT, + /** + * 关联 + */ + FIELD_TYPE_REFERENCE, + /** + * 地理位置 + */ + FIELD_TYPE_LOCATION, + /** + * 货币 + */ + FIELD_TYPE_CURRENCY, + /** + * 群 + */ + FIELD_TYPE_WWGROUP, + /** + * 自动编号 + */ + FIELD_TYPE_AUTONUMBER +} diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SmartSheetViewType.java b/wecom-objects/src/main/java/cn/felord/enumeration/SmartSheetViewType.java new file mode 100644 index 00000000..650bf8a6 --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SmartSheetViewType.java @@ -0,0 +1,35 @@ +package cn.felord.enumeration; + +/** + * 智能表格视图类型 + * + * @author dax + * @since 2024/9/2 + */ +public enum SmartSheetViewType { + + /** + * 未知类型视图,传递该值不合法 + */ + VEW_UNKNOWN, + /** + * 网格视图 + */ + VIEW_TYPE_GRID, + /** + * 看板视图 + */ + VIEW_TYPE_KANBAN, + /** + * 画册视图 + */ + VIEW_TYPE_GALLERY, + /** + * 甘特视图 + */ + VIEW_TYPE_GANTT, + /** + * 日历视图 + */ + VIEW_TYPE_CALENDAR +} diff --git a/wecom-objects/src/main/java/cn/felord/json/FilterConditionDeserializer.java b/wecom-objects/src/main/java/cn/felord/json/FilterConditionDeserializer.java new file mode 100644 index 00000000..2dbfc37f --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/json/FilterConditionDeserializer.java @@ -0,0 +1,73 @@ +package cn.felord.json; + +import cn.felord.domain.wedoc.smartsheet.AbstractFilterCondition; +import cn.felord.domain.wedoc.smartsheet.BoolFilterCondition; +import cn.felord.domain.wedoc.smartsheet.DateTimeFilterCondition; +import cn.felord.domain.wedoc.smartsheet.NumberFilterCondition; +import cn.felord.domain.wedoc.smartsheet.StringFilterCondition; +import cn.felord.domain.wedoc.smartsheet.UserFilterCondition; +import com.fasterxml.jackson.core.JacksonException; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.ObjectCodec; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonDeserializer; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.node.TreeTraversingParser; + +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; + +/** + * @author dax + * @since 2024/9/4 + */ +public class FilterConditionDeserializer extends JsonDeserializer { + + private static final Map> CLASS_HASH_MAP = new HashMap<>(); + + static { + CLASS_HASH_MAP.put("bool_value", BoolFilterCondition.class); + CLASS_HASH_MAP.put("date_time_value", DateTimeFilterCondition.class); + CLASS_HASH_MAP.put("number_value", NumberFilterCondition.class); + CLASS_HASH_MAP.put("string_value", StringFilterCondition.class); + CLASS_HASH_MAP.put("user_value", UserFilterCondition.class); + } + + @Override + public AbstractFilterCondition deserialize(JsonParser p, DeserializationContext ctxt) throws IOException, JacksonException { + p.nextToken(); + String currentName = p.getParsingContext().getCurrentName(); + JsonNode condition = p.getCodec().readTree(p); + Class configClazz = CLASS_HASH_MAP.get(currentName); + return configClazz != null ? readTreeAsValue(ctxt, condition, configClazz) : null; + } + + /** + * 兼容2.4版本,2.13版本请直接修改为{@link DeserializationContext#readTreeAsValue(JsonNode, Class)} + * + * @param the type parameter + * @param context the context + * @param n the n + * @param targetType the target type + * @return the t + * @throws IOException the io exception + */ + public T readTreeAsValue(DeserializationContext context, JsonNode n, Class targetType) throws IOException { + if (n == null) { + return null; + } + try (TreeTraversingParser p = _treeAsTokens(context, n)) { + return context.readValue(p, targetType); + } + } + + private TreeTraversingParser _treeAsTokens(DeserializationContext context, JsonNode n) throws IOException { + // Not perfect but has to do... + ObjectCodec codec = (context == null) ? null : context.getParser().getCodec(); + TreeTraversingParser p = new TreeTraversingParser(n, codec); + // important: must initialize... + p.nextToken(); + return p; + } +} diff --git a/wecom-sdk/src/main/java/cn/felord/api/SmartSheetApi.java b/wecom-sdk/src/main/java/cn/felord/api/SmartSheetApi.java new file mode 100644 index 00000000..8ef0c50a --- /dev/null +++ b/wecom-sdk/src/main/java/cn/felord/api/SmartSheetApi.java @@ -0,0 +1,131 @@ +package cn.felord.api; + +import cn.felord.domain.GenericResponse; +import cn.felord.domain.WeComResponse; +import cn.felord.domain.wedoc.smartsheet.AddOrUpdateFieldsRequest; +import cn.felord.domain.wedoc.smartsheet.AddSheetRequest; +import cn.felord.domain.wedoc.smartsheet.AddViewRequest; +import cn.felord.domain.wedoc.smartsheet.DelFieldsRequest; +import cn.felord.domain.wedoc.smartsheet.DelSheetRequest; +import cn.felord.domain.wedoc.smartsheet.DelViewRequest; +import cn.felord.domain.wedoc.smartsheet.SheetField; +import cn.felord.domain.wedoc.smartsheet.SheetViewDetail; +import cn.felord.domain.wedoc.smartsheet.SheetViewInfo; +import cn.felord.domain.wedoc.smartsheet.SmartSheetProperties; +import cn.felord.domain.wedoc.smartsheet.UpdateSheetRequest; +import cn.felord.domain.wedoc.smartsheet.UpdateViewRequest; +import retrofit2.http.Body; +import retrofit2.http.POST; + +import java.util.List; + +/** + * 智能表格操作相关API + * + * @author dax + * @since 2024 /8/30 + */ +public interface SmartSheetApi { + + + /** + * 添加子表 + *

+ * 本接口用于在表格的某个位置添加一个智能表, + * 该智能表不存在视图、记录和字段,可以使用 API 在该智能表中添加视图、记录和字段。 + * + * @param request the request + * @return the generic response + */ + @POST("wedoc/smartsheet/add_sheet") + GenericResponse addSheet(@Body AddSheetRequest request); + + /** + * 删除子表 + *

+ * 本接口用于删除在线表格中的某个智能表。 + * + * @param request the request + * @return the we com response + */ + @POST("wedoc/smartsheet/delete_sheet") + WeComResponse deleteSheet(@Body DelSheetRequest request); + + /** + * 更新子表 + *

+ * 本接口用于修改表格中某个子表的标题。 + * + * @param request the request + * @return the we com response + */ + @POST("wedoc/smartsheet/update_sheet") + WeComResponse updateSheet(@Body UpdateSheetRequest request); + + /** + * 添加视图 + *

+ * 本接口用于在 Smartsheet 中的某个子表里添加一个新视图。单表最多允许有200个视图。 + * + * @param request the request + * @return generic response + */ + @POST("wedoc/smartsheet/add_view") + GenericResponse addView(@Body AddViewRequest request); + + /** + * 删除视图 + *

+ * 本接口用于在 smartsheet 中的某个子表里删除若干个视图。 + * + * @param request the request + * @return the we com response + */ + @POST("wedoc/smartsheet/delete_views") + WeComResponse deleteViews(@Body DelViewRequest request); + + /** + * 更新视图 + *

+ * 本接口用于在 Smartsheet 中的某个子表里添加一个新视图。 + * + * @param request the request + * @return the generic response + */ + @POST("wedoc/smartsheet/update_view") + GenericResponse updateView(@Body UpdateViewRequest request); + + /** + * 添加字段 + *

+ * 本接口用于在智能表中的某个子表里添加一列或多列新字段。单表最多允许有150个字段。 + * + * @param request the request + * @return the generic response + */ + @POST("wedoc/smartsheet/add_fields") + GenericResponse> addFields(@Body AddOrUpdateFieldsRequest request); + + /** + * 删除字段 + *

+ * 本接口用于删除智能表中的某个子表里的一列或多列字段。 + * + * @param request the request + * @return the we com response + */ + @POST("wedoc/smartsheet/delete_fields") + WeComResponse deleteFields(@Body DelFieldsRequest request); + + /** + * 更新字段 + *

+ * 本接口用于更新智能中的某个子表里的一个或多个字段的标题和字段属性信息。 + * 该接口只能更新字段名、字段属性,不能更新字段类型。 + * + * @param request the request + * @return the generic response + */ + @POST("wedoc/smartsheet/update_fields") + GenericResponse> updateFields(@Body AddOrUpdateFieldsRequest request); +} diff --git a/wecom-sdk/src/main/java/cn/felord/api/WedocApi.java b/wecom-sdk/src/main/java/cn/felord/api/WedocApi.java index 2cfe80aa..5382569c 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/WedocApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/WedocApi.java @@ -19,7 +19,7 @@ * The type Office api. * * @author dax - * @since 2024/3/13 16:22 + * @since 2024 /3/13 16:22 */ public class WedocApi { private final WorkWeChatApiClient workWeChatApiClient; @@ -51,4 +51,13 @@ public FormApi formApi() { return workWeChatApiClient.retrofit().create(FormApi.class); } + /** + * 智能表格 + * + * @return the smart sheet api + */ + public SmartSheetApi smartSheetApi() { + return workWeChatApiClient.retrofit().create(SmartSheetApi.class); + } + } From e8936e98ab9c631255e481e21eab088152f15804 Mon Sep 17 00:00:00 2001 From: xiafang Date: Thu, 5 Sep 2024 15:17:53 +0800 Subject: [PATCH 10/13] copyright --- pom.xml | 15 -------- rx-wecom-sdk/pom.xml | 15 -------- .../java/cn/felord/reactive/api/AgentApi.java | 20 +++++----- .../felord/reactive/api/AgentManagerApi.java | 20 +++++----- .../felord/reactive/api/AgentMessageApi.java | 20 +++++----- .../cn/felord/reactive/api/ApprovalApi.java | 20 +++++----- .../api/AsynchronousBatchImportApi.java | 20 +++++----- .../java/cn/felord/reactive/api/AuthApi.java | 20 +++++----- .../cn/felord/reactive/api/CalendarApi.java | 20 +++++----- .../reactive/api/CallCenterManager.java | 20 +++++----- .../cn/felord/reactive/api/ChainRuleApi.java | 20 +++++----- .../reactive/api/ChatInterceptRuleApi.java | 20 +++++----- .../cn/felord/reactive/api/CheckinApi.java | 20 +++++----- .../reactive/api/ContactBookManager.java | 20 +++++----- .../felord/reactive/api/ContactMeWayApi.java | 20 +++++----- .../cn/felord/reactive/api/CorpGroupApi.java | 20 +++++----- .../cn/felord/reactive/api/CorpTagApi.java | 20 +++++----- .../reactive/api/CustomerAcquisitionApi.java | 20 +++++----- .../cn/felord/reactive/api/DepartmentApi.java | 20 +++++----- .../java/cn/felord/reactive/api/DialApi.java | 20 +++++----- .../java/cn/felord/reactive/api/DocApi.java | 20 +++++----- .../cn/felord/reactive/api/DomainApi.java | 20 +++++----- .../cn/felord/reactive/api/DownStreamApi.java | 20 +++++----- .../reactive/api/ExternalContactManager.java | 20 +++++----- .../reactive/api/ExternalContactUserApi.java | 20 +++++----- .../reactive/api/ExternalCorPayApi.java | 20 +++++----- .../reactive/api/ExternalPayAccountApi.java | 20 +++++----- .../reactive/api/ExternalStatisticApi.java | 22 +++++------ .../felord/reactive/api/FileManagerApi.java | 20 +++++----- .../java/cn/felord/reactive/api/FormApi.java | 20 +++++----- .../cn/felord/reactive/api/GroupChatApi.java | 20 +++++----- .../felord/reactive/api/GroupMessageApi.java | 20 +++++----- .../reactive/api/InternalAgentManagerApi.java | 20 +++++----- .../reactive/api/InternalAgentMessageApi.java | 20 +++++----- .../reactive/api/InternalCorPayApi.java | 20 +++++----- .../reactive/api/InternalFileManagerApi.java | 20 +++++----- .../felord/reactive/api/InternalMediaApi.java | 20 +++++----- .../reactive/api/InternalWebhookApi.java | 20 +++++----- .../cn/felord/reactive/api/InvoiceApi.java | 20 +++++----- .../cn/felord/reactive/api/JournalApi.java | 20 +++++----- .../java/cn/felord/reactive/api/JsApi.java | 20 +++++----- .../java/cn/felord/reactive/api/JsSdkApi.java | 20 +++++----- .../cn/felord/reactive/api/KfAccountApi.java | 20 +++++----- .../felord/reactive/api/KfKnowledgeApi.java | 20 +++++----- .../cn/felord/reactive/api/KfServicerApi.java | 20 +++++----- .../cn/felord/reactive/api/KfSessionApi.java | 20 +++++----- .../felord/reactive/api/KfStatisticApi.java | 20 +++++----- .../cn/felord/reactive/api/KfUpgradeApi.java | 20 +++++----- .../cn/felord/reactive/api/LinkedCorpApi.java | 20 +++++----- .../cn/felord/reactive/api/LivingApi.java | 15 ++++++++ .../java/cn/felord/reactive/api/MediaApi.java | 20 +++++----- .../felord/reactive/api/MeetingRoomApi.java | 20 +++++----- .../cn/felord/reactive/api/MiniAppPayApi.java | 20 +++++----- .../reactive/api/MmPayMktTransfersApi.java | 20 +++++----- .../cn/felord/reactive/api/MomentApi.java | 20 +++++----- .../cn/felord/reactive/api/MsgAuditApi.java | 20 +++++----- .../felord/reactive/api/OffTransferApi.java | 20 +++++----- .../cn/felord/reactive/api/OnTransferApi.java | 20 +++++----- .../java/cn/felord/reactive/api/PayApi.java | 20 +++++----- .../felord/reactive/api/ProductAlbumApi.java | 20 +++++----- .../cn/felord/reactive/api/ScheduleApi.java | 20 +++++----- .../cn/felord/reactive/api/SecurityApi.java | 20 +++++----- .../felord/reactive/api/StaffManagerApi.java | 20 +++++----- .../java/cn/felord/reactive/api/TagApi.java | 20 +++++----- .../cn/felord/reactive/api/UpStreamApi.java | 20 +++++----- .../cn/felord/reactive/api/UrgentCallApi.java | 20 +++++----- .../java/cn/felord/reactive/api/UserApi.java | 20 +++++----- .../cn/felord/reactive/api/WeDriveApi.java | 20 +++++----- .../cn/felord/reactive/api/WebhookApi.java | 20 +++++----- .../java/cn/felord/reactive/api/WedocApi.java | 20 +++++----- .../cn/felord/reactive/api/WorkWeChatApi.java | 20 +++++----- .../reactive/api/WorkWeChatApiClient.java | 20 +++++----- wecom-common/pom.xml | 15 -------- .../callback/AbstractCallbackCrypto.java | 22 +++++------ .../cn/felord/callback/ByteCollector.java | 20 +++++----- .../callback/CallbackAsyncConsumer.java | 20 +++++----- .../cn/felord/callback/CallbackDecrypted.java | 20 +++++----- .../cn/felord/callback/CallbackResponse.java | 20 +++++----- .../cn/felord/callback/CallbackSettings.java | 20 +++++----- .../felord/callback/CallbackXmlResponse.java | 20 +++++----- .../callback/CustomizableThreadFactory.java | 20 +++++----- .../java/cn/felord/callback/PKCS7Encoder.java | 26 ++++++------- .../java/cn/felord/callback/XmlEntity.java | 20 +++++----- .../java/cn/felord/domain/FileMediaType.java | 20 +++++----- .../cn/felord/domain/MiniprogramSession.java | 15 ++++++++ .../cn/felord/domain/MultipartResource.java | 20 +++++----- .../java/cn/felord/retrofit/VoidResponse.java | 20 +++++----- .../cn/felord/retrofit/WecomUserAgent.java | 20 +++++----- .../json/JacksonObjectMapperFactory.java | 20 +++++----- .../json/JacksonRequestBodyConverter.java | 20 +++++----- .../json/JacksonResponseBodyConverter.java | 20 +++++----- .../retrofit/json/JsonConverterFactory.java | 20 +++++----- .../retrofit/json/UnixInstantSerializer.java | 20 +++++----- .../json/YearMonthNumberDeserializer.java | 20 +++++----- .../cn/felord/retrofit/ssl/SSLManager.java | 20 +++++----- .../main/java/cn/felord/utils/Algorithms.java | 20 +++++----- .../utils/AlternativeJdkIdGenerator.java | 20 +++++----- .../src/main/java/cn/felord/utils/Assert.java | 20 +++++----- .../java/cn/felord/utils/Base64Utils.java | 22 +++++------ .../java/cn/felord/utils/CollectionUtils.java | 20 +++++----- .../main/java/cn/felord/utils/FileTools.java | 20 +++++----- .../src/main/java/cn/felord/utils/Hex.java | 20 +++++----- .../main/java/cn/felord/utils/MediaUtil.java | 20 +++++----- .../main/java/cn/felord/utils/OkHttpUtil.java | 20 +++++----- .../java/cn/felord/utils/StringUtils.java | 20 +++++----- .../cn/felord/xml/UnixInstantConverter.java | 20 +++++----- .../java/cn/felord/xml/XStreamXmlReader.java | 20 +++++----- .../main/java/cn/felord/xml/XmlReader.java | 20 +++++----- wecom-objects/pom.xml | 15 -------- .../src/main/java/cn/felord/AgentDetails.java | 20 +++++----- .../src/main/java/cn/felord/DefaultAgent.java | 20 +++++----- .../java/cn/felord/DownStreamDetails.java | 20 +++++----- .../src/main/java/cn/felord/SuiteDetail.java | 20 +++++----- .../cn/felord/WeComAgentTicketCacheable.java | 20 +++++----- .../main/java/cn/felord/WeComCacheable.java | 20 +++++----- .../main/java/cn/felord/WeComException.java | 20 +++++----- .../java/cn/felord/WeComTokenCacheable.java | 20 +++++----- .../cn/felord/callbacks/CallbackCrypto.java | 22 +++++------ .../callbacks/CallbackCryptoBuilder.java | 20 +++++----- .../felord/callbacks/CallbackEventBody.java | 20 +++++----- .../callbacks/CallbackSettingsService.java | 20 +++++----- .../cn/felord/callbacks/CallbackXmlBody.java | 20 +++++----- .../felord/callbacks/CallbackXmlResponse.java | 20 +++++----- .../cn/felord/domain/CursorWeComResponse.java | 20 +++++----- .../cn/felord/domain/GenericResponse.java | 20 +++++----- .../java/cn/felord/domain/WeComResponse.java | 20 +++++----- .../domain/agent/AgentDetailsResponse.java | 20 +++++----- .../cn/felord/domain/agent/AgentMenuBtn.java | 20 +++++----- .../cn/felord/domain/agent/AgentMenuBtns.java | 20 +++++----- .../domain/agent/AgentSettingRequest.java | 20 +++++----- .../cn/felord/domain/agent/AllowParties.java | 20 +++++----- .../cn/felord/domain/agent/AllowTags.java | 20 +++++----- .../cn/felord/domain/agent/AllowUsers.java | 20 +++++----- .../java/cn/felord/domain/agent/Image.java | 22 +++++------ .../domain/agent/ImageWorkbenchTemplate.java | 20 +++++----- .../java/cn/felord/domain/agent/Item.java | 22 +++++------ .../java/cn/felord/domain/agent/Items.java | 20 +++++----- .../java/cn/felord/domain/agent/KData.java | 22 +++++------ .../java/cn/felord/domain/agent/KeyData.java | 20 +++++----- .../agent/KeyDataWorkbenchTemplate.java | 20 +++++----- .../domain/agent/ListWorkbenchTemplate.java | 20 +++++----- .../felord/domain/agent/SubAgentMenuBtn.java | 20 +++++----- .../agent/UserImageWorkbenchTemplate.java | 20 +++++----- .../agent/UserKeyDataWorkbenchTemplate.java | 20 +++++----- .../agent/UserListWorkbenchTemplate.java | 20 +++++----- .../agent/UserWebviewWorkbenchTemplate.java | 20 +++++----- .../domain/agent/UserWorkBenchSetting.java | 20 +++++----- .../domain/agent/UserWorkbenchTemplate.java | 20 +++++----- .../java/cn/felord/domain/agent/Webview.java | 22 +++++------ .../agent/WebviewWorkbenchTemplate.java | 20 +++++----- .../cn/felord/domain/agent/WorkBenchBody.java | 20 +++++----- .../felord/domain/agent/WorkBenchSetting.java | 20 +++++----- .../domain/agent/WorkbenchDetailResponse.java | 20 +++++----- .../domain/agent/WorkbenchTemplate.java | 20 +++++----- .../AbstractApprovalApplyRequest.java | 15 ++++++++ .../domain/approval/ApplyContentData.java | 20 +++++----- .../cn/felord/domain/approval/ApplyData.java | 20 +++++----- .../domain/approval/ApprovalApplyRequest.java | 20 +++++----- .../domain/approval/ApprovalComment.java | 20 +++++----- .../domain/approval/ApprovalContentData.java | 20 +++++----- .../domain/approval/ApprovalDetail.java | 20 +++++----- .../felord/domain/approval/ApprovalNode.java | 20 +++++----- .../domain/approval/ApprovalNodeItem.java | 20 +++++----- .../domain/approval/ApprovalNodeItems.java | 20 +++++----- .../felord/domain/approval/ApprovalNodes.java | 20 +++++----- .../domain/approval/ApprovalProcess.java | 15 ++++++++ .../felord/domain/approval/ApprovalSpNo.java | 20 +++++----- .../approval/ApprovalTempAddRequest.java | 20 +++++----- .../approval/ApprovalTempUpdateRequest.java | 20 +++++----- .../domain/approval/ApprovalThirdNo.java | 20 +++++----- .../felord/domain/approval/ApprovalTitle.java | 20 +++++----- .../approval/ApprovalTmpDetailResponse.java | 20 +++++----- .../cn/felord/domain/approval/Approver.java | 20 +++++----- .../approval/AttendanceApplyContentData.java | 20 +++++----- .../domain/approval/AttendanceConfig.java | 20 +++++----- .../domain/approval/AttendanceValue.java | 20 +++++----- .../approval/BankAccountApplyContentData.java | 20 +++++----- .../domain/approval/BankAccountValue.java | 20 +++++----- .../cn/felord/domain/approval/BankInfo.java | 20 +++++----- .../approval/ContactApplyContentData.java | 20 +++++----- .../felord/domain/approval/ContactConfig.java | 20 +++++----- .../felord/domain/approval/ContactValue.java | 20 +++++----- .../domain/approval/ContentDataValue.java | 20 +++++----- .../felord/domain/approval/ControlConfig.java | 20 +++++----- .../cn/felord/domain/approval/CtrlOption.java | 20 +++++----- .../felord/domain/approval/CtrlProperty.java | 20 +++++----- .../domain/approval/DateApplyContentData.java | 20 +++++----- .../cn/felord/domain/approval/DateConfig.java | 20 +++++----- .../cn/felord/domain/approval/DateRange.java | 20 +++++----- .../approval/DateRangeApplyContentData.java | 20 +++++----- .../domain/approval/DateRangeConfig.java | 20 +++++----- .../domain/approval/DateRangeValue.java | 20 +++++----- .../domain/approval/DateRangeWrapper.java | 20 +++++----- .../cn/felord/domain/approval/DateValue.java | 20 +++++----- .../cn/felord/domain/approval/DayItem.java | 20 +++++----- .../felord/domain/approval/EmptyConfig.java | 20 +++++----- .../domain/approval/ExternalOption.java | 20 +++++----- .../domain/approval/FileApplyContentData.java | 20 +++++----- .../cn/felord/domain/approval/FileConfig.java | 20 +++++----- .../cn/felord/domain/approval/FileValue.java | 20 +++++----- .../approval/FormulaApplyContentData.java | 20 +++++----- .../felord/domain/approval/FormulaConfig.java | 20 +++++----- .../felord/domain/approval/FormulaValue.java | 20 +++++----- .../felord/domain/approval/LinkSubText.java | 20 +++++----- .../domain/approval/LinkTipContent.java | 20 +++++----- .../domain/approval/LinkTipSubText.java | 20 +++++----- .../domain/approval/ListContentDataValue.java | 20 +++++----- .../approval/LocationApplyContentData.java | 20 +++++----- .../domain/approval/LocationConfig.java | 20 +++++----- .../felord/domain/approval/LocationValue.java | 20 +++++----- .../approval/MoneyApplyContentData.java | 20 +++++----- .../cn/felord/domain/approval/MoneyValue.java | 20 +++++----- .../cn/felord/domain/approval/NotifyNode.java | 20 +++++----- .../felord/domain/approval/NotifyNodes.java | 20 +++++----- .../approval/NumberApplyContentData.java | 20 +++++----- .../felord/domain/approval/NumberValue.java | 20 +++++----- .../cn/felord/domain/approval/OpRelation.java | 20 +++++----- .../domain/approval/OpenApprovalData.java | 20 +++++----- .../approval/PhoneNumberApplyContentData.java | 20 +++++----- .../domain/approval/PhoneNumberValue.java | 20 +++++----- .../domain/approval/ProcessApplyRequest.java | 20 +++++----- .../felord/domain/approval/ProcessList.java | 15 ++++++++ .../felord/domain/approval/ProcessNode.java | 15 ++++++++ .../domain/approval/ProcessNodeDetail.java | 15 ++++++++ .../domain/approval/ProcessSubNode.java | 15 ++++++++ .../PunchCorrectionApplyContentData.java | 20 +++++----- .../domain/approval/PunchCorrectionValue.java | 20 +++++----- .../RelatedApprovalApplyContentData.java | 20 +++++----- .../approval/RelatedApprovalConfig.java | 20 +++++----- .../domain/approval/RelatedApprovalValue.java | 20 +++++----- .../cn/felord/domain/approval/Relation.java | 20 +++++----- .../approval/SelectorApplyContentData.java | 20 +++++----- .../domain/approval/SelectorConfig.java | 20 +++++----- .../felord/domain/approval/SelectorKey.java | 20 +++++----- .../felord/domain/approval/SelectorValue.java | 20 +++++----- .../cn/felord/domain/approval/SliceInfo.java | 20 +++++----- .../domain/approval/SpNoListRequest.java | 20 +++++----- .../domain/approval/SpNoListResponse.java | 20 +++++----- .../domain/approval/SpRecordDetail.java | 20 +++++----- .../felord/domain/approval/SpRecordItem.java | 20 +++++----- .../cn/felord/domain/approval/SubTexts.java | 20 +++++----- .../cn/felord/domain/approval/Summary.java | 20 +++++----- .../approval/TableApplyContentData.java | 20 +++++----- .../felord/domain/approval/TableConfig.java | 20 +++++----- .../domain/approval/TableCtrlProperty.java | 20 +++++----- .../cn/felord/domain/approval/TableValue.java | 20 +++++----- .../domain/approval/TemplateContent.java | 20 +++++----- .../domain/approval/TextApplyContentData.java | 20 +++++----- .../domain/approval/TextTipContent.java | 20 +++++----- .../domain/approval/TextTipSubText.java | 20 +++++----- .../cn/felord/domain/approval/TextValue.java | 20 +++++----- .../felord/domain/approval/TimezoneInfo.java | 20 +++++----- .../cn/felord/domain/approval/TipSubText.java | 20 +++++----- .../java/cn/felord/domain/approval/Tips.java | 20 +++++----- .../cn/felord/domain/approval/TipsConfig.java | 20 +++++----- .../felord/domain/approval/TipsContent.java | 20 +++++----- .../cn/felord/domain/approval/TmpControl.java | 20 +++++----- .../domain/approval/TmpControlBuilder.java | 20 +++++----- .../approval/UserQuotaSettingRequest.java | 20 +++++----- .../approval/VacationApplyContentData.java | 20 +++++----- .../domain/approval/VacationConfig.java | 20 +++++----- .../felord/domain/approval/VacationItem.java | 20 +++++----- .../felord/domain/approval/VacationQuota.java | 20 +++++----- .../felord/domain/approval/VacationValue.java | 20 +++++----- .../approval/WedriveFileApplyContentData.java | 20 +++++----- .../domain/approval/WedriveFileValue.java | 20 +++++----- .../authentication/AbstractTokenResponse.java | 20 +++++----- .../authentication/AccessTokenResponse.java | 20 +++++----- .../authentication/JsTicketResponse.java | 20 +++++----- .../authentication/ProviderTokenResponse.java | 20 +++++----- .../authentication/SuiteTokenResponse.java | 20 +++++----- .../cn/felord/domain/callback/Applyer.java | 22 +++++------ .../felord/domain/callback/ApprovalInfo.java | 20 +++++----- .../cn/felord/domain/callback/BatchJob.java | 20 +++++----- .../domain/callback/CallbackArticle.java | 20 +++++----- .../domain/callback/CallbackButton.java | 20 +++++----- .../domain/callback/CallbackExtAttr.java | 20 +++++----- .../domain/callback/CallbackExtAttrItem.java | 20 +++++----- .../domain/callback/CallbackOptionIds.java | 20 +++++----- .../domain/callback/CallbackResource.java | 20 +++++----- .../domain/callback/CallbackSelectedItem.java | 20 +++++----- .../callback/CallbackSelectedItems.java | 20 +++++----- .../domain/callback/CallbackUserId.java | 20 +++++----- .../felord/domain/callback/CallbackVideo.java | 20 +++++----- .../cn/felord/domain/callback/Comments.java | 20 +++++----- .../cn/felord/domain/callback/CorpIds.java | 20 +++++----- .../cn/felord/domain/callback/Details.java | 20 +++++----- .../cn/felord/domain/callback/GroupIds.java | 20 +++++----- .../java/cn/felord/domain/callback/Items.java | 20 +++++----- .../domain/callback/OpenApprovalNode.java | 20 +++++----- .../domain/callback/OpenApprovalNodeItem.java | 20 +++++----- .../domain/callback/OpenNotifyNode.java | 20 +++++----- .../cn/felord/domain/callback/SpRecord.java | 20 +++++----- .../java/cn/felord/domain/callback/Text.java | 20 +++++----- .../java/cn/felord/domain/callback/Web.java | 20 +++++----- .../callcenter/BusinessCardKfMessage.java | 20 +++++----- .../cn/felord/domain/callcenter/CaLink.java | 20 +++++----- .../callcenter/CaLinkKfMessageRequest.java | 20 +++++----- .../domain/callcenter/ChannelsKfMessage.java | 20 +++++----- .../felord/domain/callcenter/ChannelsMsg.java | 22 +++++------ .../domain/callcenter/ChannelsShopOrder.java | 20 +++++----- .../ChannelsShopOrderKfMessage.java | 20 +++++----- .../callcenter/ChannelsShopProduct.java | 20 +++++----- .../ChannelsShopProductKfMessage.java | 20 +++++----- .../callcenter/ClickMsgMenuContent.java | 20 +++++----- .../callcenter/EnterSessionKfEvent.java | 20 +++++----- .../domain/callcenter/EventKfMessage.java | 20 +++++----- .../domain/callcenter/FileKfMessage.java | 20 +++++----- .../callcenter/FileKfMessageRequest.java | 20 +++++----- .../domain/callcenter/ImageKfMessage.java | 20 +++++----- .../callcenter/ImageKfMessageRequest.java | 20 +++++----- .../domain/callcenter/KFMemberRange.java | 20 +++++----- .../callcenter/KfAccountAddRequest.java | 20 +++++----- .../domain/callcenter/KfAccountInfo.java | 20 +++++----- .../callcenter/KfAccountLinkRequest.java | 20 +++++----- .../callcenter/KfAccountListRequest.java | 20 +++++----- .../callcenter/KfAccountUpdateRequest.java | 20 +++++----- .../domain/callcenter/KfAndExternalUser.java | 20 +++++----- .../callcenter/KfCorpStatisticDetail.java | 20 +++++----- .../callcenter/KfCorpStatisticRequest.java | 20 +++++----- .../callcenter/KfEnterSessionContext.java | 20 +++++----- .../cn/felord/domain/callcenter/KfEvent.java | 20 +++++----- .../callcenter/KfEventMessageRequest.java | 20 +++++----- .../domain/callcenter/KfExternalUser.java | 20 +++++----- .../callcenter/KfExternalUserRequest.java | 20 +++++----- .../callcenter/KfExternalUserResponse.java | 20 +++++----- .../domain/callcenter/KfGroupchatRange.java | 20 +++++----- .../cn/felord/domain/callcenter/KfLink.java | 20 +++++----- .../felord/domain/callcenter/KfLocation.java | 20 +++++----- .../felord/domain/callcenter/KfMessage.java | 20 +++++----- .../domain/callcenter/KfMessageLink.java | 20 +++++----- .../domain/callcenter/KfMessageRequest.java | 20 +++++----- .../domain/callcenter/KfMessageText.java | 20 +++++----- .../domain/callcenter/KfMiniprogram.java | 20 +++++----- .../felord/domain/callcenter/KfMsgMenu.java | 20 +++++----- .../felord/domain/callcenter/KfServicer.java | 20 +++++----- .../callcenter/KfServicerListResponse.java | 20 +++++----- .../domain/callcenter/KfServicerRequest.java | 20 +++++----- .../domain/callcenter/KfServicerResponse.java | 20 +++++----- .../callcenter/KfServicerStatisticDetail.java | 20 +++++----- .../KfServicerStatisticRequest.java | 20 +++++----- .../domain/callcenter/KfSessionResponse.java | 20 +++++----- .../callcenter/KfSessionUpdateRequest.java | 20 +++++----- .../felord/domain/callcenter/KfStatistic.java | 20 +++++----- .../callcenter/KfStatisticResponse.java | 20 +++++----- .../cn/felord/domain/callcenter/KfText.java | 20 +++++----- .../domain/callcenter/LinkKfMessage.java | 20 +++++----- .../callcenter/LinkKfMessageRequest.java | 20 +++++----- .../domain/callcenter/LocationKfMessage.java | 20 +++++----- .../callcenter/LocationKfMessageRequest.java | 20 +++++----- .../callcenter/MenuKfEventMessageRequest.java | 20 +++++----- .../domain/callcenter/MenuKfMessage.java | 20 +++++----- .../callcenter/MenuKfMessageRequest.java | 20 +++++----- .../domain/callcenter/MenuMiniprogram.java | 22 +++++------ .../cn/felord/domain/callcenter/MenuText.java | 20 +++++----- .../domain/callcenter/MergedKfMessage.java | 20 +++++----- .../felord/domain/callcenter/MergedMsg.java | 20 +++++----- .../domain/callcenter/MergedMsgItem.java | 22 +++++------ .../callcenter/MiniprogramKfMessage.java | 20 +++++----- .../MiniprogramKfMessageRequest.java | 20 +++++----- .../callcenter/MiniprogramMsgMenuContent.java | 20 +++++----- .../domain/callcenter/MsgMenuContent.java | 20 +++++----- .../domain/callcenter/MsgSendFailKfEvent.java | 20 +++++----- .../cn/felord/domain/callcenter/OpenKfid.java | 20 +++++----- .../callcenter/RejectCustomerMsgKfEvent.java | 20 +++++----- .../callcenter/ServicerRecallMsgKfEvent.java | 20 +++++----- .../ServicerStatusChangeKfEvent.java | 20 +++++----- .../SessionStatusChangeKfEvent.java | 20 +++++----- .../domain/callcenter/SyncMsgRequest.java | 20 +++++----- .../domain/callcenter/SyncMsgResponse.java | 20 +++++----- .../callcenter/TextKfEventMessageRequest.java | 20 +++++----- .../domain/callcenter/TextKfMessage.java | 20 +++++----- .../callcenter/TextKfMessageRequest.java | 20 +++++----- .../domain/callcenter/TextMsgMenuContent.java | 20 +++++----- .../callcenter/UpgradeServiceConfig.java | 20 +++++----- .../callcenter/UpgradeServiceRequest.java | 20 +++++----- .../callcenter/UserRecallMsgKfEvent.java | 20 +++++----- .../domain/callcenter/VideoKfMessage.java | 20 +++++----- .../callcenter/VideoKfMessageRequest.java | 20 +++++----- .../domain/callcenter/ViewMsgMenuContent.java | 20 +++++----- .../domain/callcenter/VoiceKfMessage.java | 20 +++++----- .../callcenter/VoiceKfMessageRequest.java | 20 +++++----- .../domain/callcenter/WechatChannels.java | 20 +++++----- .../domain/callcenter/knowledge/Answer.java | 20 +++++----- .../knowledge/AnswerAttachment.java | 20 +++++----- .../callcenter/knowledge/GroupsRequest.java | 22 +++++------ .../callcenter/knowledge/GroupsResponse.java | 22 +++++------ .../knowledge/ImageAnswerAttachment.java | 20 +++++----- .../knowledge/ImageIntentAttachment.java | 20 +++++----- .../domain/callcenter/knowledge/Intent.java | 20 +++++----- .../callcenter/knowledge/IntentAnswer.java | 20 +++++----- .../knowledge/IntentAttachment.java | 20 +++++----- .../callcenter/knowledge/IntentDetail.java | 20 +++++----- .../domain/callcenter/knowledge/IntentId.java | 20 +++++----- .../callcenter/knowledge/IntentsRequest.java | 22 +++++------ .../callcenter/knowledge/IntentsResponse.java | 22 +++++------ .../callcenter/knowledge/KnowledgeGroup.java | 20 +++++----- .../knowledge/KnowledgeGroupDetail.java | 20 +++++----- .../knowledge/LinkAnswerAttachment.java | 20 +++++----- .../knowledge/LinkIntentAttachment.java | 20 +++++----- .../MiniprogramAnswerAttachment.java | 20 +++++----- .../MiniprogramIntentAttachment.java | 20 +++++----- .../knowledge/SimilarQuestions.java | 20 +++++----- .../callcenter/knowledge/TextQuestion.java | 20 +++++----- .../knowledge/UpdateIntentRequest.java | 20 +++++----- .../knowledge/VideoAnswerAttachment.java | 20 +++++----- .../knowledge/VideoIntentAttachment.java | 20 +++++----- .../domain/checkin/AbstractCheckinData.java | 20 +++++----- .../java/cn/felord/domain/checkin/Apply.java | 22 +++++------ .../cn/felord/domain/checkin/BaseInfo.java | 22 +++++------ .../cn/felord/domain/checkin/BukaRemind.java | 22 +++++------ .../cn/felord/domain/checkin/CheckinData.java | 22 +++++------ .../domain/checkin/CheckinDataRequest.java | 22 +++++------ .../domain/checkin/CheckinDataResponse.java | 22 +++++------ .../cn/felord/domain/checkin/CheckinDate.java | 22 +++++------ .../felord/domain/checkin/CheckinDayData.java | 22 +++++------ .../felord/domain/checkin/CheckinDayTime.java | 22 +++++------ .../felord/domain/checkin/CheckinGroup.java | 22 +++++------ .../domain/checkin/CheckinMonthData.java | 22 +++++------ .../domain/checkin/CheckinOptionRequest.java | 20 +++++----- .../domain/checkin/CheckinOptionResponse.java | 22 +++++------ .../domain/checkin/CheckinQueryRequest.java | 22 +++++------ .../domain/checkin/CheckinSchedule.java | 22 +++++------ .../checkin/CheckinStatisticsResponse.java | 20 +++++----- .../cn/felord/domain/checkin/CheckinTime.java | 22 +++++------ .../domain/checkin/CheckinUserSchedule.java | 22 +++++------ .../checkin/CheckinUserfaceRequest.java | 22 +++++------ .../domain/checkin/ClearCheckinRequest.java | 22 +++++------ .../felord/domain/checkin/DaySummaryInfo.java | 22 +++++------ .../domain/checkin/DelCheckinRequest.java | 22 +++++------ .../domain/checkin/DeviceCheckinData.java | 22 +++++------ .../checkin/DeviceCheckinDataResponse.java | 20 +++++----- .../checkin/DeviceCheckinQueryRequest.java | 22 +++++------ .../felord/domain/checkin/ExceptionInfo.java | 22 +++++------ .../cn/felord/domain/checkin/HolidayInfo.java | 22 +++++------ .../cn/felord/domain/checkin/Holidayconf.java | 22 +++++------ .../cn/felord/domain/checkin/LateRule.java | 22 +++++------ .../cn/felord/domain/checkin/LocInfo.java | 22 +++++------ .../domain/checkin/MonthSummaryInfo.java | 22 +++++------ .../cn/felord/domain/checkin/OtDetail.java | 22 +++++------ .../java/cn/felord/domain/checkin/OtInfo.java | 22 +++++------ .../cn/felord/domain/checkin/OtInfoV2.java | 22 +++++------ .../cn/felord/domain/checkin/Otapplyinfo.java | 22 +++++------ .../felord/domain/checkin/OverworkInfo.java | 20 +++++----- .../checkin/PunchCorrectionRequest.java | 22 +++++------ .../java/cn/felord/domain/checkin/Range.java | 22 +++++------ .../felord/domain/checkin/Reporterinfo.java | 22 +++++------ .../cn/felord/domain/checkin/Restdayconf.java | 22 +++++------ .../cn/felord/domain/checkin/Restinfo.java | 22 +++++------ .../cn/felord/domain/checkin/RuleInfo.java | 22 +++++------ .../felord/domain/checkin/ScheduleInfo.java | 22 +++++------ .../felord/domain/checkin/ScheduleItem.java | 22 +++++------ .../domain/checkin/ScheduleListResponse.java | 22 +++++------ .../felord/domain/checkin/SpDescription.java | 22 +++++------ .../java/cn/felord/domain/checkin/SpItem.java | 22 +++++------ .../cn/felord/domain/checkin/SpOtInfo.java | 20 +++++----- .../cn/felord/domain/checkin/SpTitle.java | 22 +++++------ .../cn/felord/domain/checkin/SpeOffDay.java | 20 +++++----- .../cn/felord/domain/checkin/SpeWorkday.java | 20 +++++----- .../cn/felord/domain/checkin/TimeRule.java | 22 +++++------ .../cn/felord/domain/checkin/TimeSection.java | 22 +++++------ .../domain/checkin/TimeSectionInfo.java | 22 +++++------ .../domain/checkin/UserCheckinGroup.java | 20 +++++----- .../checkin/UserCheckinOptionRequest.java | 20 +++++----- .../checkin/UserCheckinOptionResponse.java | 22 +++++------ .../felord/domain/checkin/UserSchedule.java | 20 +++++----- .../domain/checkin/UserScheduleRequest.java | 22 +++++------ .../felord/domain/checkin/UserSchedules.java | 22 +++++------ .../cn/felord/domain/checkin/WifimacInfo.java | 20 +++++----- .../cn/felord/domain/checkin/Workdayconf.java | 22 +++++------ .../java/cn/felord/domain/common/Code.java | 20 +++++----- .../cn/felord/domain/common/CursorPage.java | 20 +++++----- .../cn/felord/domain/common/DepartmentId.java | 20 +++++----- .../cn/felord/domain/common/DeptUserMap.java | 20 +++++----- .../cn/felord/domain/common/FileInfo.java | 20 +++++----- .../java/cn/felord/domain/common/FormId.java | 20 +++++----- .../java/cn/felord/domain/common/GroupId.java | 22 +++++------ .../java/cn/felord/domain/common/JobId.java | 20 +++++----- .../main/java/cn/felord/domain/common/KV.java | 20 +++++----- .../java/cn/felord/domain/common/MediaId.java | 20 +++++----- .../cn/felord/domain/common/Miniprogram.java | 22 +++++------ .../cn/felord/domain/common/MomentId.java | 20 +++++----- .../java/cn/felord/domain/common/MsgId.java | 20 +++++----- .../java/cn/felord/domain/common/Name.java | 20 +++++----- .../java/cn/felord/domain/common/OpenId.java | 20 +++++----- .../cn/felord/domain/common/PageRequest.java | 20 +++++----- .../cn/felord/domain/common/PlainText.java | 20 +++++----- .../cn/felord/domain/common/ProductId.java | 20 +++++----- .../cn/felord/domain/common/StrategyId.java | 20 +++++----- .../cn/felord/domain/common/TemplateId.java | 20 +++++----- .../java/cn/felord/domain/common/UserId.java | 20 +++++----- .../cn/felord/domain/common/UserMoment.java | 20 +++++----- .../java/cn/felord/domain/common/Value.java | 22 +++++------ .../contactbook/async/BatchPartyRequest.java | 20 +++++----- .../async/BatchResultResponse.java | 20 +++++----- .../contactbook/async/BatchUserRequest.java | 20 +++++----- .../domain/contactbook/async/Callback.java | 20 +++++----- .../domain/contactbook/async/Result.java | 20 +++++----- .../contactbook/department/DeptInfo.java | 22 +++++------ .../department/DeptSimpleInfo.java | 20 +++++----- .../linkedcorp/CorpSimpleUserInfo.java | 20 +++++----- .../contactbook/linkedcorp/CorpUserInfo.java | 20 +++++----- .../linkedcorp/PermListResponse.java | 20 +++++----- .../cn/felord/domain/contactbook/tag/Tag.java | 20 +++++----- .../domain/contactbook/tag/TagUser.java | 20 +++++----- .../tag/TagUserActionResponse.java | 20 +++++----- .../contactbook/tag/TagUserRequest.java | 20 +++++----- .../contactbook/tag/TagUserResponse.java | 20 +++++----- .../domain/contactbook/user/AttrsItem.java | 22 +++++------ .../contactbook/user/BatchInviteRequest.java | 20 +++++----- .../contactbook/user/BatchInviteResponse.java | 20 +++++----- .../user/ConvertTmpUserRequest.java | 20 +++++----- .../domain/contactbook/user/DeptUser.java | 20 +++++----- .../user/DeptUserListResponse.java | 20 +++++----- .../contactbook/user/EmailUserRequest.java | 20 +++++----- .../domain/contactbook/user/Extattr.java | 22 +++++------ .../contactbook/user/ExternalAttrItem.java | 22 +++++------ .../contactbook/user/ExternalProfile.java | 22 +++++------ .../user/ExternalUserListDetailRequest.java | 20 +++++----- .../domain/contactbook/user/Mobile.java | 20 +++++----- .../domain/contactbook/user/SimpleUser.java | 20 +++++----- .../contactbook/user/TfaInfoResponse.java | 20 +++++----- .../domain/contactbook/user/TfaUser.java | 20 +++++----- .../domain/contactbook/user/TmpUser.java | 20 +++++----- .../domain/contactbook/user/UserDetail.java | 20 +++++----- .../contactbook/user/UserDetailResponse.java | 20 +++++----- .../user/UserIdConvertRequest.java | 20 +++++----- .../user/UserIdConvertResponse.java | 20 +++++----- .../domain/contactbook/user/UserIdPair.java | 20 +++++----- .../domain/contactbook/user/UserIds.java | 20 +++++----- .../contactbook/user/UserInfoRequest.java | 20 +++++----- .../contactbook/user/UserInfoResponse.java | 22 +++++------ .../user/UserSensitiveInfoResponse.java | 20 +++++----- .../domain/contactbook/user/UserTicket.java | 20 +++++----- .../felord/domain/contactbook/user/Web.java | 22 +++++------ .../domain/corpay/external/BillDetail.java | 20 +++++----- .../domain/corpay/external/BillRequest.java | 20 +++++----- .../domain/corpay/external/BillResponse.java | 20 +++++----- .../domain/corpay/external/Commodity.java | 20 +++++----- .../domain/corpay/external/ContactInfo.java | 20 +++++----- .../domain/corpay/external/FundFlow.java | 20 +++++----- .../corpay/external/FundFlowRequest.java | 20 +++++----- .../corpay/external/FundFlowResponse.java | 20 +++++----- .../domain/corpay/external/GroupName.java | 20 +++++----- .../corpay/external/MchDetailResponse.java | 20 +++++----- .../felord/domain/corpay/external/MchId.java | 20 +++++----- .../domain/corpay/external/MchScope.java | 20 +++++----- .../corpay/external/MchScopeRequest.java | 20 +++++----- .../corpay/external/MiniprogramInfo.java | 20 +++++----- .../domain/corpay/external/OutTradeNo.java | 20 +++++----- .../domain/corpay/external/PaymentId.java | 20 +++++----- .../domain/corpay/external/RefundInfo.java | 20 +++++----- .../corpay/external/account/AccountInfo.java | 20 +++++----- .../external/account/AccountStatusInfo.java | 22 +++++------ .../external/account/AccountValidation.java | 22 +++++------ .../external/account/ApplyStatusResponse.java | 20 +++++----- .../external/account/AuditDetailItem.java | 22 +++++------ .../external/account/BankCardSupplement.java | 20 +++++----- .../external/account/BusinessLicenseInfo.java | 20 +++++----- .../external/account/ContactInfoWrapper.java | 20 +++++----- .../account/FinanceInstitutionInfo.java | 20 +++++----- .../corpay/external/account/IdCardInfo.java | 20 +++++----- .../external/account/MchAccountRequest.java | 20 +++++----- .../corpay/external/account/MediaIds.java | 20 +++++----- .../corpay/external/account/OutRequestNo.java | 20 +++++----- .../corpay/internal/AbstractXmlRequest.java | 20 +++++----- .../corpay/internal/AbstractXmlResponse.java | 20 +++++----- .../corpay/internal/RedPackRecordRequest.java | 20 +++++----- .../internal/RedPackRecordResponse.java | 20 +++++----- .../corpay/internal/RedPackRequest.java | 20 +++++----- .../corpay/internal/RedPackResponse.java | 20 +++++----- .../internal/TransPocketRecordRequest.java | 20 +++++----- .../internal/TransPocketRecordResponse.java | 20 +++++----- .../corpay/internal/TransPocketRequest.java | 20 +++++----- .../corpay/internal/TransPocketResponse.java | 20 +++++----- .../domain/corpay/internal/XmlRequest.java | 20 +++++----- .../domain/corpay/miniapppay/Amount.java | 22 +++++------ .../domain/corpay/miniapppay/BillRequest.java | 20 +++++----- .../corpay/miniapppay/BillResponse.java | 22 +++++------ .../corpay/miniapppay/GoodsDetailItem.java | 22 +++++------ .../miniapppay/MchIdAndOutRefundNo.java | 20 +++++----- .../corpay/miniapppay/MchIdAndOutTradeNo.java | 20 +++++----- .../corpay/miniapppay/MiniPayRequest.java | 22 +++++------ .../domain/corpay/miniapppay/OrderAmount.java | 22 +++++------ .../corpay/miniapppay/PayOrderDetail.java | 22 +++++------ .../miniapppay/PayOrderDetailResponse.java | 22 +++++------ .../corpay/miniapppay/PaySignRequest.java | 22 +++++------ .../domain/corpay/miniapppay/Payer.java | 22 +++++------ .../corpay/miniapppay/PromotionDetail.java | 20 +++++----- .../miniapppay/PromotionGoodsDetail.java | 20 +++++----- .../domain/corpay/miniapppay/RAmount.java | 22 +++++------ .../corpay/miniapppay/RefundAmount.java | 22 +++++------ .../miniapppay/RefundDetailResponse.java | 22 +++++------ .../miniapppay/RefundPromotionDetail.java | 20 +++++----- .../corpay/miniapppay/RefundRequest.java | 22 +++++------ .../corpay/miniapppay/RefundResponse.java | 20 +++++----- .../domain/corpay/miniapppay/SceneInfo.java | 22 +++++------ .../domain/corpay/miniapppay/StoreInfo.java | 22 +++++------ .../callback/RefundCallbackData.java | 20 +++++----- .../callback/TransactionCallbackData.java | 20 +++++----- .../felord/domain/corpgroup/ChainContact.java | 22 +++++------ .../domain/corpgroup/ChainContactRequest.java | 22 +++++------ .../cn/felord/domain/corpgroup/ChainCorp.java | 20 +++++----- .../corpgroup/ChainCorpDetailRequest.java | 22 +++++------ .../corpgroup/ChainCorpDetailResponse.java | 22 +++++------ .../felord/domain/corpgroup/ChainGroup.java | 22 +++++------ .../corpgroup/ChainGroupInfoRequest.java | 22 +++++------ .../domain/corpgroup/ChainGroupRequest.java | 22 +++++------ .../cn/felord/domain/corpgroup/ChainId.java | 20 +++++----- .../cn/felord/domain/corpgroup/ChainRule.java | 22 +++++------ .../domain/corpgroup/ChainRuleAddRequest.java | 20 +++++----- .../corpgroup/ChainRuleModifyRequest.java | 20 +++++----- .../felord/domain/corpgroup/ContactInfo.java | 22 +++++------ .../felord/domain/corpgroup/CorpExUser.java | 20 +++++----- .../domain/corpgroup/CorpExUserRequest.java | 20 +++++----- .../cn/felord/domain/corpgroup/CorpId.java | 20 +++++----- .../felord/domain/corpgroup/CorpInUser.java | 20 +++++----- .../cn/felord/domain/corpgroup/CorpInfo.java | 20 +++++----- .../domain/corpgroup/ExPendingIdRequest.java | 22 +++++------ .../domain/corpgroup/FailedContact.java | 20 +++++----- .../felord/domain/corpgroup/FailedCorp.java | 20 +++++----- .../cn/felord/domain/corpgroup/GroupCorp.java | 22 +++++------ .../domain/corpgroup/GroupCorpsResponse.java | 20 +++++----- .../cn/felord/domain/corpgroup/JobResult.java | 20 +++++----- .../domain/corpgroup/JobResultResponse.java | 20 +++++----- .../domain/corpgroup/MemberCorpRange.java | 22 +++++------ .../corpgroup/MiniprogramSessionResponse.java | 20 +++++----- .../domain/corpgroup/OwnerCorpRange.java | 22 +++++------ .../domain/corpgroup/PendingExUser.java | 20 +++++----- .../cn/felord/domain/corpgroup/RuleInfo.java | 22 +++++------ .../domain/corpgroup/ShareInfoRequest.java | 22 +++++------ .../domain/corpgroup/ShareInfoResponse.java | 20 +++++----- .../corpgroup/UnionPendingIdRequest.java | 20 +++++----- .../java/cn/felord/domain/dial/Callee.java | 22 +++++------ .../java/cn/felord/domain/dial/Caller.java | 22 +++++------ .../cn/felord/domain/dial/DialRecord.java | 22 +++++------ .../domain/dial/DialRecordsRequest.java | 22 +++++------ .../externalcontact/AcquisitionLink.java | 20 +++++----- .../AcquisitionLinkCreateRequest.java | 20 +++++----- .../externalcontact/AcquisitionLinkRange.java | 20 +++++----- .../AcquisitionLinkUpdateRequest.java | 20 +++++----- .../externalcontact/AcquisitionQuota.java | 20 +++++----- .../AcquisitionQuotaResponse.java | 20 +++++----- .../externalcontact/AgentCorpGroupIds.java | 20 +++++----- .../AgentCorpGroupIdsAndTagIds.java | 20 +++++----- .../externalcontact/AgentCorpTagIds.java | 20 +++++----- .../externalcontact/AgentCorpTagIterator.java | 20 +++++----- .../domain/externalcontact/AllCorpTag.java | 20 +++++----- .../externalcontact/ApplicableRange.java | 20 +++++----- .../domain/externalcontact/BehaviorData.java | 20 +++++----- .../ChatInterceptRuleAddRequest.java | 20 +++++----- .../ChatInterceptRuleUpdateRequest.java | 20 +++++----- .../domain/externalcontact/ChatListItem.java | 20 +++++----- .../domain/externalcontact/ChatPair.java | 20 +++++----- .../domain/externalcontact/Conclusions.java | 20 +++++----- .../domain/externalcontact/ConfigId.java | 20 +++++----- .../domain/externalcontact/ContactInfo.java | 20 +++++----- .../externalcontact/ContactListRequest.java | 20 +++++----- .../externalcontact/ContactListResponse.java | 20 +++++----- .../ContactWayAddResponse.java | 20 +++++----- .../externalcontact/ContactWayBody.java | 20 +++++----- .../externalcontact/ContactWayBodyDetail.java | 20 +++++----- .../ContactWayConfigRequest.java | 20 +++++----- .../domain/externalcontact/ContentText.java | 20 +++++----- .../externalcontact/ContractListResponse.java | 20 +++++----- .../domain/externalcontact/CorpGroupIds.java | 20 +++++----- .../domain/externalcontact/CorpTag.java | 20 +++++----- .../externalcontact/CorpTagAddRequest.java | 20 +++++----- .../domain/externalcontact/CorpTagBase.java | 20 +++++----- .../externalcontact/CorpTagEditRequest.java | 20 +++++----- .../domain/externalcontact/CorpTagGroup.java | 20 +++++----- .../domain/externalcontact/CorpTagIds.java | 20 +++++----- .../externalcontact/CorpTagIterator.java | 20 +++++----- .../externalcontact/CorpTagOptRequest.java | 20 +++++----- .../CorpTagStrategyAddRequest.java | 20 +++++----- .../CorpTagStrategyEditRequest.java | 20 +++++----- .../CustomerRemarkRequest.java | 20 +++++----- .../CustomerStrategyDetail.java | 20 +++++----- .../CustomerStrategyDetailResponse.java | 20 +++++----- .../CustomerStrategyPrivilege.java | 20 +++++----- .../CustomerStrategyRequest.java | 20 +++++----- .../externalcontact/DelWelcomeTmpRequest.java | 20 +++++----- .../externalcontact/ExternalContact.java | 20 +++++----- .../externalcontact/ExternalContactTag.java | 20 +++++----- .../ExternalUserDetailResponse.java | 20 +++++----- .../externalcontact/ExternalUserId.java | 20 +++++----- .../ExternalUserListDetailResponse.java | 20 +++++----- .../externalcontact/ExtraInterceptRule.java | 20 +++++----- .../externalcontact/FileMsgAttachment.java | 20 +++++----- .../domain/externalcontact/FollowInfo.java | 20 +++++----- .../domain/externalcontact/FollowUser.java | 20 +++++----- .../domain/externalcontact/GroupChatData.java | 20 +++++----- .../externalcontact/GroupChatDataByDay.java | 20 +++++----- .../externalcontact/GroupChatDataByOwner.java | 20 +++++----- .../GroupChatDataResponse.java | 20 +++++----- .../GroupChatDayDataRequest.java | 20 +++++----- .../externalcontact/GroupChatDetail.java | 20 +++++----- .../GroupChatDetailRequest.java | 20 +++++----- .../externalcontact/GroupChatListRequest.java | 20 +++++----- .../GroupChatListResponse.java | 20 +++++----- .../externalcontact/GroupChatMember.java | 20 +++++----- .../GroupChatOwnerDataRequest.java | 20 +++++----- .../externalcontact/GroupChatWayBody.java | 20 +++++----- .../externalcontact/GroupChatWayResponse.java | 20 +++++----- .../externalcontact/GroupMsgDetail.java | 20 +++++----- .../externalcontact/GroupMsgListRequest.java | 20 +++++----- .../externalcontact/GroupMsgListResponse.java | 20 +++++----- .../externalcontact/GroupMsgSendResult.java | 20 +++++----- .../GroupMsgSendResultRequest.java | 20 +++++----- .../GroupMsgSendResultResponse.java | 20 +++++----- .../externalcontact/GroupMsgTaskDetail.java | 20 +++++----- .../externalcontact/GroupMsgTaskRequest.java | 20 +++++----- .../externalcontact/GroupMsgTaskResponse.java | 20 +++++----- .../felord/domain/externalcontact/Image.java | 20 +++++----- .../ImageMomentAttachment.java | 20 +++++----- .../externalcontact/ImageMsgAttachment.java | 20 +++++----- .../domain/externalcontact/ImageUrl.java | 20 +++++----- .../externalcontact/InteractionUser.java | 20 +++++----- .../externalcontact/InterceptRuleDetail.java | 20 +++++----- .../externalcontact/InterceptRuleInfo.java | 20 +++++----- .../externalcontact/InterceptRuleRequest.java | 20 +++++----- .../felord/domain/externalcontact/Link.java | 20 +++++----- .../domain/externalcontact/LinkCustomer.java | 20 +++++----- .../LinkCustomersResponse.java | 20 +++++----- .../externalcontact/LinkDetailResponse.java | 20 +++++----- .../felord/domain/externalcontact/LinkId.java | 20 +++++----- .../externalcontact/LinkMomentAttachment.java | 20 +++++----- .../externalcontact/LinkMsgAttachment.java | 20 +++++----- .../externalcontact/LinkPageRequest.java | 20 +++++----- .../LinkStatisticResponse.java | 22 +++++------ .../domain/externalcontact/LinksResponse.java | 20 +++++----- .../externalcontact/MediaMiniprogram.java | 20 +++++----- .../externalcontact/MiniProgramStyle.java | 20 +++++----- .../MiniprogramMsgAttachment.java | 20 +++++----- .../externalcontact/MomentAttachment.java | 20 +++++----- .../domain/externalcontact/MomentBody.java | 20 +++++----- .../MomentCommentResponse.java | 20 +++++----- .../MomentCustomerListResponse.java | 20 +++++----- .../domain/externalcontact/MomentDetail.java | 20 +++++----- .../externalcontact/MomentDetailVideo.java | 20 +++++----- .../MomentExternalContactList.java | 20 +++++----- .../externalcontact/MomentInfoRequest.java | 20 +++++----- .../domain/externalcontact/MomentLink.java | 20 +++++----- .../externalcontact/MomentListRequest.java | 20 +++++----- .../externalcontact/MomentListResponse.java | 20 +++++----- .../externalcontact/MomentLocation.java | 20 +++++----- .../MomentMemberTaskResponse.java | 20 +++++----- .../externalcontact/MomentSenderList.java | 20 +++++----- .../externalcontact/MomentStrategyDetail.java | 20 +++++----- .../MomentStrategyDetailResponse.java | 20 +++++----- .../MomentStrategyPrivilege.java | 20 +++++----- .../MomentStrategyRequest.java | 20 +++++----- .../externalcontact/MomentTaskRequest.java | 20 +++++----- .../MomentTaskResultResponse.java | 20 +++++----- .../domain/externalcontact/MsgAttachment.java | 20 +++++----- .../domain/externalcontact/MsgTagFilter.java | 20 +++++----- .../externalcontact/MsgTemplateRequest.java | 20 +++++----- .../externalcontact/MsgTemplateResponse.java | 20 +++++----- .../externalcontact/MutableContactWay.java | 20 +++++----- .../MutableCustomerStrategy.java | 20 +++++----- .../MutableGroupChatWayBody.java | 20 +++++----- .../MutableMomentStrategy.java | 20 +++++----- .../OffTransferCustomerRequest.java | 20 +++++----- .../domain/externalcontact/OpenGid.java | 20 +++++----- .../domain/externalcontact/OwnerFilter.java | 20 +++++----- .../ProductAlbumAddRequest.java | 20 +++++----- .../ProductAlbumAttachment.java | 20 +++++----- .../externalcontact/ProductAlbumDetail.java | 20 +++++----- .../ProductAlbumDetailResponse.java | 20 +++++----- .../domain/externalcontact/StatisticData.java | 20 +++++----- .../externalcontact/StrategyCorpGroupIds.java | 20 +++++----- .../externalcontact/StrategyCorpTagIds.java | 20 +++++----- .../StrategyCorpTagIterator.java | 20 +++++----- .../externalcontact/StrategyListResponse.java | 20 +++++----- .../domain/externalcontact/StrategyRange.java | 20 +++++----- .../externalcontact/StrategyRangeRequest.java | 20 +++++----- .../StrategyRangeResponse.java | 20 +++++----- .../domain/externalcontact/TagList.java | 20 +++++----- .../TransferCustomerRequest.java | 20 +++++----- .../TransferCustomerResponse.java | 20 +++++----- .../TransferFailedGroupChat.java | 20 +++++----- .../TransferGroupChatRequest.java | 20 +++++----- .../TransferResultRequest.java | 20 +++++----- .../TransferResultResponse.java | 20 +++++----- .../externalcontact/UnassignedInfo.java | 20 +++++----- .../UnassignedListResponse.java | 20 +++++----- .../UserBehaviorDataRequest.java | 20 +++++----- .../UserBehaviorDataResponse.java | 20 +++++----- .../VideoMomentAttachment.java | 20 +++++----- .../externalcontact/VideoMsgAttachment.java | 20 +++++----- .../domain/externalcontact/VisibleRange.java | 20 +++++----- .../externalcontact/WechatChannels.java | 20 +++++----- .../externalcontact/WelcomeCodeRequest.java | 20 +++++----- .../WelcomeTemplateAddRequest.java | 20 +++++----- .../WelcomeTemplateEditRequest.java | 20 +++++----- .../WelcomeTemplateResponse.java | 20 +++++----- .../java/cn/felord/domain/hr/FieldBase.java | 20 +++++----- .../java/cn/felord/domain/hr/FieldDetail.java | 22 +++++------ .../java/cn/felord/domain/hr/FieldGroup.java | 22 +++++------ .../java/cn/felord/domain/hr/FieldId.java | 20 +++++----- .../java/cn/felord/domain/hr/FieldInfo.java | 22 +++++------ .../java/cn/felord/domain/hr/FieldResult.java | 20 +++++----- .../java/cn/felord/domain/hr/FileField.java | 20 +++++----- .../java/cn/felord/domain/hr/GroupResult.java | 20 +++++----- .../java/cn/felord/domain/hr/Int64Field.java | 20 +++++----- .../java/cn/felord/domain/hr/MobileField.java | 20 +++++----- .../java/cn/felord/domain/hr/NewGroup.java | 20 +++++----- .../java/cn/felord/domain/hr/RemoveIdx.java | 20 +++++----- .../cn/felord/domain/hr/StaffInfoRequest.java | 20 +++++----- .../domain/hr/StaffInfoUpdateRequest.java | 20 +++++----- .../domain/hr/StaffInfoUpdateResponse.java | 20 +++++----- .../java/cn/felord/domain/hr/StringField.java | 20 +++++----- .../java/cn/felord/domain/hr/Uint32Field.java | 20 +++++----- .../java/cn/felord/domain/hr/Uint64Field.java | 20 +++++----- .../java/cn/felord/domain/hr/ValueFile.java | 22 +++++------ .../java/cn/felord/domain/hr/ValueMobile.java | 22 +++++------ .../cn/felord/domain/invoice/InfoItem.java | 22 +++++------ .../felord/domain/invoice/InvoiceDetail.java | 20 +++++----- .../domain/invoice/InvoiceDetailResponse.java | 22 +++++------ .../invoice/InvoiceDetailsResponse.java | 22 +++++------ .../cn/felord/domain/invoice/InvoiceInfo.java | 20 +++++----- .../domain/invoice/InvoiceInfoItems.java | 20 +++++----- .../invoice/InvoiceUpdateBatchRequest.java | 20 +++++----- .../domain/invoice/InvoiceUpdateRequest.java | 20 +++++----- .../cn/felord/domain/invoice/UserInfo.java | 22 +++++------ .../felord/domain/journal/JournalComment.java | 20 +++++----- .../journal/JournalDownloadRequest.java | 22 +++++------ .../domain/journal/JournalExportRequest.java | 22 +++++------ .../domain/journal/JournalRecordDetail.java | 20 +++++----- .../domain/journal/JournalRecordRequest.java | 20 +++++----- .../domain/journal/JournalRecordResponse.java | 22 +++++------ .../cn/felord/domain/journal/JournalStat.java | 22 +++++------ .../domain/journal/JournalStatRequest.java | 22 +++++------ .../domain/journal/JournalStatResponse.java | 22 +++++------ .../cn/felord/domain/journal/JournalUuid.java | 20 +++++----- .../cn/felord/domain/journal/LeaderLevel.java | 20 +++++----- .../cn/felord/domain/journal/OpenPartyId.java | 20 +++++----- .../cn/felord/domain/journal/OpenTagId.java | 20 +++++----- .../cn/felord/domain/journal/Receivers.java | 22 +++++------ .../cn/felord/domain/journal/ReportItem.java | 22 +++++------ .../domain/journal/ReportItemDetail.java | 22 +++++------ .../domain/journal/ReportUserRange.java | 22 +++++------ .../cn/felord/domain/journal/WhiteRange.java | 22 +++++------ .../domain/jssdk/AgentConfigResponse.java | 20 +++++----- .../domain/jssdk/CorpConfigResponse.java | 20 +++++----- .../domain/jssdk/JSignatureResponse.java | 20 +++++----- .../domain/jssdk/LaunchCodeRequest.java | 22 +++++------ .../domain/jssdk/LaunchCodeResponse.java | 20 +++++----- .../felord/domain/living/ActivityDetail.java | 22 +++++------ .../domain/living/LivingCodeRequest.java | 20 +++++----- .../domain/living/LivingCreateRequest.java | 22 +++++------ .../domain/living/LivingExternalUser.java | 22 +++++------ .../cn/felord/domain/living/LivingId.java | 20 +++++----- .../cn/felord/domain/living/LivingInfo.java | 22 +++++------ .../living/LivingShareInfoResponse.java | 22 +++++------ .../domain/living/LivingUpdateRequest.java | 20 +++++----- .../cn/felord/domain/living/LivingUser.java | 22 +++++------ .../cn/felord/domain/living/StatInfo.java | 22 +++++------ .../domain/living/UserLivingsRequest.java | 20 +++++----- .../domain/living/UserLivingsResponse.java | 20 +++++----- .../domain/living/WatchStatRequest.java | 20 +++++----- .../domain/living/WatchStatResponse.java | 22 +++++------ .../cn/felord/domain/living/WwShareCode.java | 22 +++++------ .../felord/domain/media/MediaJobDetail.java | 20 +++++----- .../felord/domain/media/MediaJobResponse.java | 20 +++++----- .../cn/felord/domain/media/MediaResponse.java | 20 +++++----- .../domain/media/MediaUploadRequest.java | 20 +++++----- .../domain/meetingroom/BookingDetail.java | 22 +++++------ .../meetingroom/BookingInfoRequest.java | 22 +++++------ .../meetingroom/BookingInfoResponse.java | 20 +++++----- .../domain/meetingroom/BookingRequest.java | 22 +++++------ .../domain/meetingroom/BookingResponse.java | 22 +++++------ .../meetingroom/BookingResultResponse.java | 22 +++++------ .../domain/meetingroom/BookingSchedule.java | 22 +++++------ .../domain/meetingroom/CancelBookRequest.java | 22 +++++------ .../felord/domain/meetingroom/Coordinate.java | 22 +++++------ .../meetingroom/MeetBookingRequest.java | 22 +++++------ .../domain/meetingroom/MeetingRoomId.java | 20 +++++----- .../cn/felord/domain/meetingroom/Range.java | 22 +++++------ .../meetingroom/RoomBookingRequest.java | 20 +++++----- .../meetingroom/RoomBookingResponse.java | 20 +++++----- .../domain/meetingroom/RoomCreateRequest.java | 22 +++++------ .../felord/domain/meetingroom/RoomDetail.java | 20 +++++----- .../domain/meetingroom/RoomListRequest.java | 22 +++++------ .../domain/meetingroom/RoomListResponse.java | 20 +++++----- .../domain/meetingroom/RoomUpdateRequest.java | 20 +++++----- .../meetingroom/ScheduleBookingRequest.java | 22 +++++------ .../domain/meetingroom/ScheduleInfo.java | 22 +++++------ .../felord/domain/message/AbstractCard.java | 20 +++++----- .../domain/message/AbstractMessageBody.java | 20 +++++----- .../domain/message/AbstractReplaceCard.java | 20 +++++----- .../AbstractUpdateTemplateCardRequest.java | 20 +++++----- .../cn/felord/domain/message/ActionMenu.java | 20 +++++----- .../java/cn/felord/domain/message/Button.java | 20 +++++----- .../message/ButtonMessageTemplateCard.java | 20 +++++----- .../ButtonMessageTemplateReplaceCard.java | 20 +++++----- .../domain/message/ButtonSelection.java | 20 +++++----- .../cn/felord/domain/message/Checkbox.java | 20 +++++----- .../domain/message/FileMessageBody.java | 20 +++++----- .../domain/message/ImageMessageBody.java | 20 +++++----- .../domain/message/MarkdownMessageBody.java | 20 +++++----- .../felord/domain/message/MessageArticle.java | 20 +++++----- .../domain/message/MessageBodyBuilder.java | 15 ++++++++ .../domain/message/MessageBodyBuilders.java | 20 +++++----- .../cn/felord/domain/message/MessageNews.java | 20 +++++----- .../domain/message/MessageResponse.java | 20 +++++----- .../domain/message/MessageTemplateCard.java | 20 +++++----- .../message/MessageTemplateReplaceCard.java | 20 +++++----- .../domain/message/MessageTextCard.java | 20 +++++----- .../felord/domain/message/MessageVideo.java | 20 +++++----- .../message/MiniprogramMessageBody.java | 20 +++++----- .../domain/message/MiniprogramNotice.java | 20 +++++----- .../felord/domain/message/MpNewsArticle.java | 20 +++++----- .../domain/message/MpNewsMessageBody.java | 20 +++++----- .../message/MultipleMessageTemplateCard.java | 20 +++++----- .../MultipleMessageTemplateReplaceCard.java | 20 +++++----- .../cn/felord/domain/message/NewsArticle.java | 20 +++++----- .../domain/message/NewsMessageBody.java | 20 +++++----- .../message/NewsMessageTemplateCard.java | 20 +++++----- .../NewsMessageTemplateReplaceCard.java | 20 +++++----- .../java/cn/felord/domain/message/Option.java | 20 +++++----- .../java/cn/felord/domain/message/Select.java | 20 +++++----- .../felord/domain/message/SubmitButton.java | 20 +++++----- .../domain/message/TemplateCardBuilders.java | 20 +++++----- .../message/TemplateCardMessageBody.java | 20 +++++----- .../message/TemplateReplaceCardBuilders.java | 20 +++++----- .../domain/message/TextCardMessageBody.java | 20 +++++----- .../domain/message/TextMessageBody.java | 20 +++++----- .../message/TextMessageTemplateCard.java | 20 +++++----- .../TextMessageTemplateReplaceCard.java | 20 +++++----- .../message/UpdateDisabledBtnRequest.java | 20 +++++----- .../message/UpdateNewTemplateCardRequest.java | 20 +++++----- .../domain/message/VideoMessageBody.java | 20 +++++----- .../domain/message/VoiceMessageBody.java | 20 +++++----- .../message/VoteMessageTemplateCard.java | 20 +++++----- .../VoteMessageTemplateReplaceCard.java | 22 +++++------ .../domain/msgaudit/AgreeInfoRequest.java | 22 +++++------ .../domain/msgaudit/ChatAgreeDetail.java | 22 +++++------ .../msgaudit/InnerChatInfoResponse.java | 22 +++++------ .../domain/msgaudit/InnerChatMember.java | 22 +++++------ .../domain/msgaudit/PermitUsersRequest.java | 20 +++++----- .../cn/felord/domain/msgaudit/RoomId.java | 20 +++++----- .../domain/msgaudit/SingleAgreeDetail.java | 22 +++++------ .../cn/felord/domain/msgaudit/TwoSides.java | 22 +++++------ .../cn/felord/domain/oa/AttendeeDetail.java | 20 +++++----- .../felord/domain/oa/CalendarAddRequest.java | 20 +++++----- .../cn/felord/domain/oa/CalendarBody.java | 20 +++++----- .../felord/domain/oa/CalendarDelRequest.java | 20 +++++----- .../cn/felord/domain/oa/CalendarDetail.java | 20 +++++----- .../domain/oa/CalendarDetailRequest.java | 20 +++++----- .../domain/oa/CalendarDetailResponse.java | 20 +++++----- .../cn/felord/domain/oa/CalendarSharer.java | 20 +++++----- .../felord/domain/oa/CalendarUpdateBody.java | 20 +++++----- .../domain/oa/CalendarUpdateRequest.java | 20 +++++----- .../java/cn/felord/domain/oa/ExcludeTime.java | 20 +++++----- .../java/cn/felord/domain/oa/PublicRange.java | 20 +++++----- .../java/cn/felord/domain/oa/Reminders.java | 22 +++++------ .../cn/felord/domain/oa/RemindersDetail.java | 20 +++++----- .../felord/domain/oa/ScheduleAddRequest.java | 22 +++++------ .../felord/domain/oa/ScheduleAttendees.java | 20 +++++----- .../domain/oa/ScheduleCalendarQuery.java | 20 +++++----- .../felord/domain/oa/ScheduleDelRequest.java | 22 +++++------ .../cn/felord/domain/oa/ScheduleDetail.java | 20 +++++----- .../domain/oa/ScheduleDetailRequest.java | 20 +++++----- .../domain/oa/ScheduleDetailResponse.java | 20 +++++----- .../felord/domain/oa/ScheduleRequestBody.java | 22 +++++------ .../felord/domain/oa/ScheduleUpdateBody.java | 20 +++++----- .../domain/oa/ScheduleUpdateRequest.java | 22 +++++------ .../felord/domain/security/DeviceCodes.java | 20 +++++----- .../security/DeviceConfirmResponse.java | 20 +++++----- .../domain/security/DeviceDelRequest.java | 20 +++++----- .../domain/security/DeviceListRequest.java | 22 +++++------ .../felord/domain/security/DeviceResult.java | 20 +++++----- .../domain/security/DeviceResultResponse.java | 20 +++++----- .../felord/domain/security/ExternalUser.java | 20 +++++----- .../domain/security/FileOptRecordDetail.java | 20 +++++----- .../domain/security/FileOptRecordRequest.java | 22 +++++------ .../security/FileOptRecordResponse.java | 20 +++++----- .../cn/felord/domain/security/Operation.java | 22 +++++------ .../felord/domain/security/TrustDevice.java | 20 +++++----- .../domain/security/TrustDeviceDetail.java | 20 +++++----- .../felord/domain/security/TrustDevices.java | 20 +++++----- .../domain/security/UserDeviceRequest.java | 20 +++++----- .../domain/urgentcall/CallResponse.java | 20 +++++----- .../domain/urgentcall/CallStateRequest.java | 20 +++++----- .../domain/urgentcall/CallStateResponse.java | 20 +++++----- .../felord/domain/urgentcall/CalleeUsers.java | 20 +++++----- .../cn/felord/domain/urgentcall/State.java | 20 +++++----- .../felord/domain/webhook/WebhookArticle.java | 20 +++++----- .../cn/felord/domain/webhook/WebhookBody.java | 20 +++++----- .../domain/webhook/WebhookFileBody.java | 20 +++++----- .../domain/webhook/WebhookImageBody.java | 20 +++++----- .../domain/webhook/WebhookMarkdownBody.java | 20 +++++----- .../domain/webhook/WebhookNewsBody.java | 20 +++++----- .../webhook/WebhookTemplateCardBody.java | 20 +++++----- .../domain/webhook/WebhookTextBody.java | 20 +++++----- .../domain/webhook/WebhookVoiceBody.java | 20 +++++----- .../domain/webhook/card/AppCardAction.java | 20 +++++----- .../domain/webhook/card/AppImageTextArea.java | 20 +++++----- .../felord/domain/webhook/card/AppJump.java | 20 +++++----- .../domain/webhook/card/AppQuoteArea.java | 20 +++++----- .../card/AtStaffHorizontalContent.java | 20 +++++----- .../card/AttachmentHorizontalContent.java | 20 +++++----- .../domain/webhook/card/CardAction.java | 20 +++++----- .../felord/domain/webhook/card/CardImage.java | 20 +++++----- .../domain/webhook/card/CardSource.java | 20 +++++----- .../felord/domain/webhook/card/CardType.java | 20 +++++----- .../domain/webhook/card/ClickEventType.java | 20 +++++----- .../domain/webhook/card/EmphasisContent.java | 20 +++++----- .../webhook/card/HorizontalContent.java | 20 +++++----- .../webhook/card/HorizontalContentType.java | 20 +++++----- .../domain/webhook/card/ImageTextArea.java | 20 +++++----- .../cn/felord/domain/webhook/card/Jump.java | 20 +++++----- .../felord/domain/webhook/card/MainTitle.java | 20 +++++----- .../domain/webhook/card/NewsTemplateCard.java | 20 +++++----- .../webhook/card/NoneImageTextArea.java | 20 +++++----- .../felord/domain/webhook/card/NoneJump.java | 20 +++++----- .../domain/webhook/card/NoneQuoteArea.java | 20 +++++----- .../felord/domain/webhook/card/QuoteArea.java | 20 +++++----- .../domain/webhook/card/TemplateCard.java | 20 +++++----- .../webhook/card/TextHorizontalContent.java | 20 +++++----- .../domain/webhook/card/TextTemplateCard.java | 20 +++++----- .../domain/webhook/card/UrlCardAction.java | 20 +++++----- .../webhook/card/UrlHorizontalContent.java | 20 +++++----- .../domain/webhook/card/UrlImageTextArea.java | 20 +++++----- .../felord/domain/webhook/card/UrlJump.java | 20 +++++----- .../domain/webhook/card/UrlQuoteArea.java | 20 +++++----- .../felord/domain/wedoc/doc/AccessRule.java | 22 +++++------ .../wedoc/doc/AccessRuleUpdateRequest.java | 22 +++++------ .../domain/wedoc/doc/AddSheetRequest.java | 15 ++++++++ .../domain/wedoc/doc/AddSheetResponse.java | 15 ++++++++ .../cn/felord/domain/wedoc/doc/CellData.java | 15 ++++++++ .../felord/domain/wedoc/doc/CellFormat.java | 15 ++++++++ .../cn/felord/domain/wedoc/doc/CellLink.java | 15 ++++++++ .../cn/felord/domain/wedoc/doc/CellValue.java | 15 ++++++++ .../domain/wedoc/doc/CoAuthListItem.java | 22 +++++------ .../cn/felord/domain/wedoc/doc/Color.java | 15 ++++++++ .../domain/wedoc/doc/CreateDocRequest.java | 20 +++++----- .../domain/wedoc/doc/CreateDocResponse.java | 20 +++++----- .../wedoc/doc/DeleteDimensionRequest.java | 15 ++++++++ .../wedoc/doc/DeleteDimensionResponse.java | 15 ++++++++ .../domain/wedoc/doc/DocAuthResponse.java | 22 +++++------ .../felord/domain/wedoc/doc/DocBaseInfo.java | 20 +++++----- .../wedoc/doc/DocBatchUpdateRequest.java | 15 ++++++++ .../domain/wedoc/doc/DocDeleteContent.java | 15 ++++++++ .../cn/felord/domain/wedoc/doc/DocId.java | 20 +++++----- .../domain/wedoc/doc/DocInsertImage.java | 15 ++++++++ .../domain/wedoc/doc/DocInsertLocation.java | 15 ++++++++ .../domain/wedoc/doc/DocInsertTable.java | 15 ++++++++ .../domain/wedoc/doc/DocInsertText.java | 15 ++++++++ .../felord/domain/wedoc/doc/DocLocation.java | 15 ++++++++ .../domain/wedoc/doc/DocMemberListItem.java | 22 +++++------ .../cn/felord/domain/wedoc/doc/DocRange.java | 15 ++++++++ .../domain/wedoc/doc/DocReplaceText.java | 15 ++++++++ .../domain/wedoc/doc/DocSecuritySetting.java | 20 +++++----- .../domain/wedoc/doc/DocTextProperty.java | 15 ++++++++ .../domain/wedoc/doc/DocUpdateRequest.java | 15 ++++++++ .../wedoc/doc/DocUpdateTextProperty.java | 15 ++++++++ .../domain/wedoc/doc/FileAuthMember.java | 20 +++++----- .../wedoc/doc/FileMemberUpdateRequest.java | 20 +++++----- .../cn/felord/domain/wedoc/doc/GridData.java | 15 ++++++++ .../domain/wedoc/doc/RenameDocRequest.java | 20 +++++----- .../cn/felord/domain/wedoc/doc/RowData.java | 15 ++++++++ .../domain/wedoc/doc/SecureSetting.java | 22 +++++------ .../wedoc/doc/SheetBatchUpdateRequest.java | 15 ++++++++ .../wedoc/doc/SheetBatchUpdateResponse.java | 15 ++++++++ .../cn/felord/domain/wedoc/doc/SheetId.java | 15 ++++++++ .../domain/wedoc/doc/SheetProperties.java | 15 ++++++++ .../domain/wedoc/doc/SheetUpdateRequest.java | 15 ++++++++ .../domain/wedoc/doc/SheetUpdateResponse.java | 15 ++++++++ .../felord/domain/wedoc/doc/TextFormat.java | 15 ++++++++ .../domain/wedoc/doc/UpdateRangeRequest.java | 15 ++++++++ .../domain/wedoc/doc/UpdateRangeResponse.java | 15 ++++++++ .../cn/felord/domain/wedoc/doc/Watermark.java | 22 +++++------ .../wedoc/form/AbstractUpdateFormRequest.java | 20 +++++----- .../wedoc/form/AllowMultipleSelection.java | 20 +++++----- .../wedoc/form/AnswerFileExtendReply.java | 20 +++++----- .../wedoc/form/AnswerOptionExtendReply.java | 20 +++++----- .../felord/domain/wedoc/form/AnswerReply.java | 20 +++++----- .../domain/wedoc/form/AnswerReplyItem.java | 20 +++++----- .../form/CheckboxQuestionExtendSetting.java | 20 +++++----- .../domain/wedoc/form/CheckboxSetting.java | 20 +++++----- .../domain/wedoc/form/CreateFormRequest.java | 20 +++++----- .../wedoc/form/CreateSettingFormRequest.java | 20 +++++----- .../wedoc/form/DateQuestionExtendSetting.java | 20 +++++----- .../felord/domain/wedoc/form/DateSetting.java | 20 +++++----- .../form/DepartmentQuestionExtendSetting.java | 20 +++++----- .../form/DurationQuestionExtendSetting.java | 20 +++++----- .../domain/wedoc/form/DurationSetting.java | 20 +++++----- .../wedoc/form/FileQuestionExtendSetting.java | 20 +++++----- .../felord/domain/wedoc/form/FileSetting.java | 20 +++++----- .../felord/domain/wedoc/form/FillInRange.java | 20 +++++----- .../felord/domain/wedoc/form/FormAnswer.java | 20 +++++----- .../domain/wedoc/form/FormAnswerItem.java | 20 +++++----- .../domain/wedoc/form/FormAnswerRequest.java | 20 +++++----- .../domain/wedoc/form/FormAnswerResponse.java | 20 +++++----- .../wedoc/form/FormConfirmedRequest.java | 20 +++++----- .../wedoc/form/FormConfirmedResponse.java | 20 +++++----- .../felord/domain/wedoc/form/FormDetail.java | 20 +++++----- .../cn/felord/domain/wedoc/form/FormInfo.java | 20 +++++----- .../cn/felord/domain/wedoc/form/FormItem.java | 20 +++++----- .../domain/wedoc/form/FormOptionItem.java | 20 +++++----- .../domain/wedoc/form/FormQuestion.java | 20 +++++----- .../felord/domain/wedoc/form/FormSetting.java | 20 +++++----- .../domain/wedoc/form/FormSettings.java | 20 +++++----- .../wedoc/form/FormStatisticRequest.java | 20 +++++----- .../wedoc/form/FormStatisticResponse.java | 20 +++++----- .../wedoc/form/FormUnConfirmedRequest.java | 20 +++++----- .../wedoc/form/FormUnConfirmedResponse.java | 20 +++++----- .../form/ImageQuestionExtendSetting.java | 20 +++++----- .../domain/wedoc/form/ImageSetting.java | 20 +++++----- .../form/LocationQuestionExtendSetting.java | 20 +++++----- .../domain/wedoc/form/LocationSetting.java | 20 +++++----- .../form/MemberQuestionExtendSetting.java | 20 +++++----- .../wedoc/form/NullQuestionExtendSetting.java | 20 +++++----- .../wedoc/form/QuestionExtendSetting.java | 20 +++++----- .../form/RadioQuestionExtendSetting.java | 20 +++++----- .../domain/wedoc/form/RadioSetting.java | 20 +++++----- .../domain/wedoc/form/SettingFormDetail.java | 20 +++++----- .../domain/wedoc/form/SettingFormInfo.java | 20 +++++----- .../domain/wedoc/form/SettingFormItem.java | 38 +++++++++---------- .../wedoc/form/SettingFormQuestion.java | 20 +++++----- .../felord/domain/wedoc/form/SubmitUser.java | 20 +++++----- .../TemperatureQuestionExtendSetting.java | 20 +++++----- .../domain/wedoc/form/TemperatureSetting.java | 20 +++++----- .../wedoc/form/TextQuestionExtendSetting.java | 20 +++++----- .../felord/domain/wedoc/form/TextSetting.java | 20 +++++----- .../wedoc/form/TimeQuestionExtendSetting.java | 20 +++++----- .../felord/domain/wedoc/form/TimeSetting.java | 20 +++++----- .../domain/wedoc/form/TimedRepeatInfo.java | 20 +++++----- .../wedoc/form/TimedRepeatInfoDetail.java | 20 +++++----- .../felord/domain/wedoc/form/UnfillUser.java | 20 +++++----- .../wedoc/form/UpdateFormSettingRequest.java | 20 +++++----- .../UpdateSettingFormQuestionRequest.java | 20 +++++----- .../felord/domain/wedoc/form/UploadLimit.java | 20 +++++----- .../smartsheet/AbstractFilterCondition.java | 15 ++++++++ .../smartsheet/AddOrUpdateFieldsRequest.java | 15 ++++++++ .../wedoc/smartsheet/AddSheetRequest.java | 15 ++++++++ .../wedoc/smartsheet/AddViewRequest.java | 15 ++++++++ .../smartsheet/AttachmentFieldProperty.java | 15 ++++++++ .../smartsheet/AttachmentSheetField.java | 15 ++++++++ .../smartsheet/AutoNumberFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/AutoNumberRule.java | 15 ++++++++ .../smartsheet/AutoNumberSheetField.java | 15 ++++++++ .../wedoc/smartsheet/BoolFilterCondition.java | 15 ++++++++ .../domain/wedoc/smartsheet/BoolValue.java | 15 ++++++++ .../smartsheet/CheckboxFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/CheckboxSheetField.java | 15 ++++++++ .../smartsheet/CreatedTimeSheetField.java | 15 ++++++++ .../smartsheet/CurrencyFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/CurrencySheetField.java | 15 ++++++++ .../smartsheet/DateTimeFieldProperty.java | 15 ++++++++ .../smartsheet/DateTimeFilterCondition.java | 15 ++++++++ .../wedoc/smartsheet/DateTimeSheetField.java | 15 ++++++++ .../wedoc/smartsheet/DateTimeValue.java | 15 ++++++++ .../wedoc/smartsheet/DelFieldsRequest.java | 15 ++++++++ .../wedoc/smartsheet/DelSheetRequest.java | 15 ++++++++ .../wedoc/smartsheet/DelViewRequest.java | 15 ++++++++ .../domain/wedoc/smartsheet/FilterSpec.java | 15 ++++++++ .../domain/wedoc/smartsheet/GroupSpec.java | 15 ++++++++ .../smartsheet/LocationFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/LocationSheetField.java | 15 ++++++++ .../smartsheet/ModifiedTimeSheetField.java | 15 ++++++++ .../wedoc/smartsheet/NumberFieldProperty.java | 15 ++++++++ .../smartsheet/NumberFilterCondition.java | 15 ++++++++ .../wedoc/smartsheet/NumberSheetField.java | 15 ++++++++ .../domain/wedoc/smartsheet/NumberValue.java | 15 ++++++++ .../smartsheet/ProgressFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/ProgressSheetField.java | 15 ++++++++ .../smartsheet/ReferenceFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/ReferenceSheetField.java | 15 ++++++++ .../wedoc/smartsheet/SelectFieldOption.java | 15 ++++++++ .../wedoc/smartsheet/SelectFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/SelectSheetField.java | 15 ++++++++ .../domain/wedoc/smartsheet/SheetField.java | 15 ++++++++ .../wedoc/smartsheet/SheetViewDetail.java | 15 ++++++++ .../wedoc/smartsheet/SheetViewInfo.java | 15 ++++++++ .../smartsheet/SingleSelectSheetField.java | 15 ++++++++ .../smartsheet/SmartSheetProperties.java | 15 ++++++++ .../domain/wedoc/smartsheet/SortField.java | 15 ++++++++ .../domain/wedoc/smartsheet/SortSpec.java | 15 ++++++++ .../smartsheet/StringFilterCondition.java | 15 ++++++++ .../domain/wedoc/smartsheet/StringValue.java | 15 ++++++++ .../wedoc/smartsheet/TimeFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/UpdateSheetRequest.java | 15 ++++++++ .../wedoc/smartsheet/UpdateViewRequest.java | 15 ++++++++ .../wedoc/smartsheet/UrlFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/UrlSheetField.java | 15 ++++++++ .../wedoc/smartsheet/UserFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/UserFilterCondition.java | 15 ++++++++ .../wedoc/smartsheet/UserSheetField.java | 15 ++++++++ .../wedoc/smartsheet/ViewDateRange.java | 15 ++++++++ .../domain/wedoc/smartsheet/ViewProperty.java | 15 ++++++++ .../smartsheet/WwGroupFieldProperty.java | 15 ++++++++ .../wedoc/smartsheet/WwGroupSheetField.java | 15 ++++++++ .../felord/domain/wedrive/BufferSource.java | 20 +++++----- .../domain/wedrive/FileDownloadResponse.java | 20 +++++----- .../java/cn/felord/domain/wedrive/FileId.java | 20 +++++----- .../felord/domain/wedrive/SelectedTicket.java | 20 +++++----- .../felord/enumeration/AccountSignState.java | 20 +++++----- .../java/cn/felord/enumeration/AddWays.java | 20 +++++----- .../enumeration/AgentCustomizedPubStatus.java | 20 +++++----- .../felord/enumeration/AgentMenuBtnType.java | 20 +++++----- .../cn/felord/enumeration/AgreeStatus.java | 20 +++++----- .../felord/enumeration/AnswerAttachType.java | 20 +++++----- .../enumeration/AnswerReplyItemType.java | 20 +++++----- .../cn/felord/enumeration/AnswerStatus.java | 20 +++++----- .../cn/felord/enumeration/ApplyState.java | 20 +++++----- .../cn/felord/enumeration/ApplymentState.java | 20 +++++----- .../felord/enumeration/ApprovalCtrlType.java | 20 +++++----- .../enumeration/ApprovalNotifyType.java | 20 +++++----- .../felord/enumeration/ApproverNodeMode.java | 20 +++++----- .../java/cn/felord/enumeration/ApvRel.java | 20 +++++----- .../enumeration/ApvlBankAccountType.java | 20 +++++----- .../cn/felord/enumeration/AttendanceType.java | 20 +++++----- .../enumeration/AttendeeResponseStatus.java | 20 +++++----- .../enumeration/AutoNumberFieldType.java | 15 ++++++++ .../enumeration/AutoNumberRuleType.java | 15 ++++++++ .../felord/enumeration/BankAccountType.java | 20 +++++----- .../java/cn/felord/enumeration/BillType.java | 20 +++++----- .../cn/felord/enumeration/BookingStatus.java | 20 +++++----- .../java/cn/felord/enumeration/BoolEnum.java | 20 +++++----- .../felord/enumeration/BusinessCertType.java | 20 +++++----- .../cn/felord/enumeration/BusinessType.java | 20 +++++----- .../cn/felord/enumeration/ButtonStyle.java | 20 +++++----- .../cn/felord/enumeration/ButtonType.java | 20 +++++----- .../cn/felord/enumeration/CallReason.java | 20 +++++----- .../java/cn/felord/enumeration/CallType.java | 20 +++++----- .../enumeration/CallbackChangeType.java | 20 +++++----- .../cn/felord/enumeration/CallbackEvent.java | 20 +++++----- .../enumeration/CallbackRefundStatus.java | 20 +++++----- .../java/cn/felord/enumeration/CashType.java | 20 +++++----- .../felord/enumeration/ChannelsSubType.java | 20 +++++----- .../enumeration/ChatGroupJoinScene.java | 20 +++++----- .../enumeration/ChatGroupQuitScene.java | 20 +++++----- .../java/cn/felord/enumeration/ChatType.java | 20 +++++----- .../cn/felord/enumeration/CheckboxMode.java | 20 +++++----- .../felord/enumeration/CheckinClearType.java | 20 +++++----- .../felord/enumeration/CheckinDataType.java | 20 +++++----- .../enumeration/CheckinExceptionType.java | 20 +++++----- .../felord/enumeration/CheckinGroupType.java | 20 +++++----- .../felord/enumeration/CheckinOutRange.java | 20 +++++----- .../felord/enumeration/CheckinRecordType.java | 20 +++++----- .../felord/enumeration/CheckinSpTimeType.java | 20 +++++----- .../cn/felord/enumeration/CheckinSpType.java | 20 +++++----- .../cn/felord/enumeration/CheckinType.java | 20 +++++----- .../cn/felord/enumeration/Conjunction.java | 15 ++++++++ .../felord/enumeration/ContactCtrlMode.java | 20 +++++----- .../cn/felord/enumeration/ContactScene.java | 20 +++++----- .../cn/felord/enumeration/ContactType.java | 20 +++++----- .../enumeration/ContactUserTagType.java | 20 +++++----- .../felord/enumeration/ContactUserType.java | 20 +++++----- .../cn/felord/enumeration/CorpGroupType.java | 20 +++++----- .../cn/felord/enumeration/CountLimitType.java | 20 +++++----- .../cn/felord/enumeration/CreateType.java | 20 +++++----- .../cn/felord/enumeration/CurrencyType.java | 15 ++++++++ .../cn/felord/enumeration/DateCtrlType.java | 20 +++++----- .../cn/felord/enumeration/DateFormatType.java | 20 +++++----- .../cn/felord/enumeration/DateRangeType.java | 20 +++++----- .../enumeration/DateTimeFieldFormatter.java | 15 ++++++++ .../cn/felord/enumeration/DayDataType.java | 20 +++++----- .../cn/felord/enumeration/DayOfMonth.java | 20 +++++----- .../cn/felord/enumeration/DecimalPlaces.java | 20 +++++----- .../enumeration/DeviceImportStatus.java | 20 +++++----- .../felord/enumeration/DeviceSourceType.java | 20 +++++----- .../cn/felord/enumeration/DeviceStatus.java | 20 +++++----- .../cn/felord/enumeration/DeviceType.java | 20 +++++----- .../java/cn/felord/enumeration/Dimension.java | 15 ++++++++ .../cn/felord/enumeration/DistanceType.java | 20 +++++----- .../felord/enumeration/DocAuthListType.java | 20 +++++----- .../cn/felord/enumeration/DocAuthType.java | 20 +++++----- .../java/cn/felord/enumeration/DocType.java | 20 +++++----- .../felord/enumeration/DurationDateType.java | 20 +++++----- .../felord/enumeration/DurationTimeScale.java | 20 +++++----- .../java/cn/felord/enumeration/EmailType.java | 20 +++++----- .../cn/felord/enumeration/EquipmentType.java | 20 +++++----- .../felord/enumeration/FailKfEventType.java | 20 +++++----- .../cn/felord/enumeration/FieldGroupType.java | 20 +++++----- .../java/cn/felord/enumeration/FieldType.java | 20 +++++----- .../cn/felord/enumeration/FillOutAuth.java | 20 +++++----- .../enumeration/FilterDateTimeType.java | 15 ++++++++ .../cn/felord/enumeration/FilterOperator.java | 15 ++++++++ .../cn/felord/enumeration/FinanceType.java | 20 +++++----- .../felord/enumeration/FormCheckboxType.java | 20 +++++----- .../enumeration/FormForkFinishType.java | 20 +++++----- .../felord/enumeration/FormItemReplyType.java | 20 +++++----- .../cn/felord/enumeration/FormItemStatus.java | 20 +++++----- .../cn/felord/enumeration/FormOperType.java | 20 +++++----- .../cn/felord/enumeration/FormRepeatType.java | 20 +++++----- .../cn/felord/enumeration/FormWeekFlag.java | 20 +++++----- .../cn/felord/enumeration/FundFlowType.java | 20 +++++----- .../java/cn/felord/enumeration/Gender.java | 20 +++++----- .../enumeration/GroupChatJoinScene.java | 20 +++++----- .../enumeration/GroupChatMemberType.java | 20 +++++----- .../felord/enumeration/GroupChatStatus.java | 20 +++++----- .../enumeration/GroupMsgSendResultStatus.java | 20 +++++----- .../cn/felord/enumeration/GroupOrderType.java | 20 +++++----- .../cn/felord/enumeration/HolidayType.java | 20 +++++----- .../java/cn/felord/enumeration/IdDocType.java | 20 +++++----- .../cn/felord/enumeration/IdentityType.java | 20 +++++----- .../cn/felord/enumeration/ImportStatus.java | 20 +++++----- .../cn/felord/enumeration/InterceptType.java | 20 +++++----- .../java/cn/felord/enumeration/JobStatus.java | 20 +++++----- .../felord/enumeration/JournalReportType.java | 20 +++++----- .../cn/felord/enumeration/KfEventType.java | 20 +++++----- .../cn/felord/enumeration/KfMsgOrigin.java | 20 +++++----- .../java/cn/felord/enumeration/KfMsgType.java | 20 +++++----- .../enumeration/KfServiceEventStatus.java | 20 +++++----- .../cn/felord/enumeration/KfServiceState.java | 20 +++++----- .../felord/enumeration/KfServiceStatus.java | 20 +++++----- .../cn/felord/enumeration/KfServicerType.java | 20 +++++----- .../cn/felord/enumeration/KfStopType.java | 20 +++++----- .../cn/felord/enumeration/ListFilterType.java | 20 +++++----- .../enumeration/LivingReplayStatus.java | 20 +++++----- .../cn/felord/enumeration/LivingStatus.java | 20 +++++----- .../cn/felord/enumeration/LivingType.java | 20 +++++----- .../cn/felord/enumeration/LocationType.java | 20 +++++----- .../cn/felord/enumeration/MarginType.java | 20 +++++----- .../cn/felord/enumeration/MchBindStatus.java | 20 +++++----- .../enumeration/MediaAttachmentType.java | 20 +++++----- .../cn/felord/enumeration/MediaJobStatus.java | 20 +++++----- .../cn/felord/enumeration/MediaTypeEnum.java | 20 +++++----- .../cn/felord/enumeration/MessageSafe.java | 20 +++++----- .../felord/enumeration/MiniApyBillType.java | 20 +++++----- .../felord/enumeration/MiniPayTradeState.java | 20 +++++----- .../felord/enumeration/MiniPayTradeType.java | 20 +++++----- .../enumeration/MomentAttachmentType.java | 20 +++++----- .../enumeration/MomentInteractionType.java | 20 +++++----- .../enumeration/MomentTaskPubStatus.java | 20 +++++----- .../felord/enumeration/MomentTaskStatus.java | 20 +++++----- .../felord/enumeration/MomentVisibleType.java | 20 +++++----- .../cn/felord/enumeration/MsgAttachType.java | 20 +++++----- .../enumeration/MsgAuditEditionType.java | 20 +++++----- .../enumeration/MsgMenuContentType.java | 20 +++++----- .../felord/enumeration/MsgSendOptStatus.java | 20 +++++----- .../cn/felord/enumeration/MultiStyle.java | 20 +++++----- .../cn/felord/enumeration/NativeAgent.java | 20 +++++----- .../cn/felord/enumeration/NodeStatus.java | 20 +++++----- .../java/cn/felord/enumeration/NodeType.java | 20 +++++----- .../cn/felord/enumeration/NotifyType.java | 20 +++++----- .../java/cn/felord/enumeration/OptSource.java | 20 +++++----- .../java/cn/felord/enumeration/OptType.java | 20 +++++----- .../cn/felord/enumeration/PayBusinessId.java | 20 +++++----- .../enumeration/PayCallbackEventType.java | 20 +++++----- .../cn/felord/enumeration/PayContactType.java | 20 +++++----- .../cn/felord/enumeration/PayOrgType.java | 20 +++++----- .../cn/felord/enumeration/PaySignType.java | 20 +++++----- .../cn/felord/enumeration/PaymentType.java | 20 +++++----- .../felord/enumeration/ProcessNodeStatus.java | 20 +++++----- .../felord/enumeration/ProcessNodeType.java | 20 +++++----- .../cn/felord/enumeration/PromotionScope.java | 20 +++++----- .../enumeration/QualificationStatus.java | 20 +++++----- .../java/cn/felord/enumeration/RangeType.java | 20 +++++----- .../cn/felord/enumeration/RealSignState.java | 20 +++++----- .../cn/felord/enumeration/RedPackScene.java | 20 +++++----- .../cn/felord/enumeration/RedPackStatus.java | 20 +++++----- .../cn/felord/enumeration/RefundChannel.java | 20 +++++----- .../cn/felord/enumeration/RefundResult.java | 20 +++++----- .../cn/felord/enumeration/RefundStatus.java | 20 +++++----- .../felord/enumeration/ReimburseStatus.java | 20 +++++----- .../cn/felord/enumeration/RejectSwitch.java | 20 +++++----- .../enumeration/RemindBeforeEventSecs.java | 20 +++++----- .../cn/felord/enumeration/RemindTimeDiff.java | 20 +++++----- .../cn/felord/enumeration/RepeatType.java | 20 +++++----- .../cn/felord/enumeration/ScheduleOpMode.java | 20 +++++----- .../cn/felord/enumeration/ScheduleStatus.java | 20 +++++----- .../enumeration/SecurityDeviceType.java | 20 +++++----- .../felord/enumeration/SelectFieldStyle.java | 20 +++++----- .../cn/felord/enumeration/SelectType.java | 20 +++++----- .../cn/felord/enumeration/SemanticsRule.java | 20 +++++----- .../enumeration/SessionStatusChangeType.java | 20 +++++----- .../felord/enumeration/SharePermission.java | 20 +++++----- .../cn/felord/enumeration/SheetFieldType.java | 15 ++++++++ .../felord/enumeration/SheetUpdateEvent.java | 15 ++++++++ .../cn/felord/enumeration/SingleStyle.java | 20 +++++----- .../cn/felord/enumeration/SliceState.java | 20 +++++----- .../enumeration/SmartSheetViewType.java | 15 ++++++++ .../cn/felord/enumeration/SpOtStatus.java | 20 +++++----- .../java/cn/felord/enumeration/SpStatus.java | 20 +++++----- .../felord/enumeration/StatusChangeEvent.java | 20 +++++----- .../cn/felord/enumeration/TakeoverStatus.java | 20 +++++----- .../enumeration/TemperatureUnitType.java | 20 +++++----- .../felord/enumeration/TemplateCardType.java | 20 +++++----- .../enumeration/TextValidationDetail.java | 20 +++++----- .../enumeration/TextValidationType.java | 20 +++++----- .../cn/felord/enumeration/TimeFormatType.java | 20 +++++----- .../cn/felord/enumeration/TipsCtrlType.java | 20 +++++----- .../cn/felord/enumeration/TradeState.java | 20 +++++----- .../felord/enumeration/TransPocketCheck.java | 20 +++++----- .../felord/enumeration/TransPocketStatus.java | 20 +++++----- .../felord/enumeration/TransactionType.java | 20 +++++----- .../felord/enumeration/UpdateDetailType.java | 20 +++++----- .../enumeration/UseTemplateApprover.java | 20 +++++----- .../java/cn/felord/enumeration/UseType.java | 20 +++++----- .../cn/felord/enumeration/UserQrcodeSize.java | 20 +++++----- .../cn/felord/enumeration/UserStatus.java | 20 +++++----- .../cn/felord/enumeration/ValueResult.java | 20 +++++----- .../java/cn/felord/enumeration/ValueType.java | 20 +++++----- .../cn/felord/enumeration/VoiceFormat.java | 20 +++++----- .../cn/felord/enumeration/WebViewHeight.java | 20 +++++----- .../enumeration/WechatChannelScene.java | 20 +++++----- .../enumeration/WechatChannelSource.java | 20 +++++----- .../java/cn/felord/enumeration/WeekDay.java | 20 +++++----- .../enumeration/WelcomeNotifyStrategy.java | 20 +++++----- .../cn/felord/enumeration/WorkbenchType.java | 20 +++++----- .../java/cn/felord/enumeration/WwMsgType.java | 20 +++++----- .../json/FilterConditionDeserializer.java | 15 ++++++++ .../QuestionExtendSettingDeserializer.java | 20 +++++----- .../felord/json/TmpControlDeserializer.java | 20 +++++----- .../cn/felord/retrofit/AbstractTokenApi.java | 20 +++++----- .../cn/felord/retrofit/AccessTokenApi.java | 20 +++++----- .../retrofit/DownStreamAccessTokenApi.java | 20 +++++----- .../felord/retrofit/DownStreamTokenApi.java | 20 +++++----- .../ResponseBodyCallAdapterFactory.java | 20 +++++----- .../retrofit/RetrofitAccessTokenApi.java | 20 +++++----- .../java/cn/felord/retrofit/TokenApi.java | 20 +++++----- .../cn/felord/retrofit/TokenInterceptor.java | 20 +++++----- .../retrofit/WorkWechatRetrofitFactory.java | 20 +++++----- .../convert/CallbackChangeTypeConverter.java | 20 +++++----- .../xml/convert/CallbackEventConverter.java | 20 +++++----- .../xml/convert/CallbackNumberEnum.java | 20 +++++----- .../xml/convert/NumberEnumConverter.java | 20 +++++----- .../PayCallbackEventTypeConverter.java | 20 +++++----- .../convert/UpdateDetailTypeConverter.java | 20 +++++----- wecom-sdk/pom.xml | 15 -------- .../src/main/java/cn/felord/api/AgentApi.java | 20 +++++----- .../java/cn/felord/api/AgentManagerApi.java | 20 +++++----- .../java/cn/felord/api/AgentMessageApi.java | 20 +++++----- .../main/java/cn/felord/api/ApprovalApi.java | 20 +++++----- .../api/AsynchronousBatchImportApi.java | 20 +++++----- .../src/main/java/cn/felord/api/AuthApi.java | 20 +++++----- .../main/java/cn/felord/api/CalendarApi.java | 20 +++++----- .../java/cn/felord/api/CallCenterManager.java | 20 +++++----- .../main/java/cn/felord/api/ChainRuleApi.java | 20 +++++----- .../cn/felord/api/ChatInterceptRuleApi.java | 20 +++++----- .../main/java/cn/felord/api/CheckinApi.java | 20 +++++----- .../cn/felord/api/ContactBookManager.java | 20 +++++----- .../java/cn/felord/api/ContactMeWayApi.java | 20 +++++----- .../main/java/cn/felord/api/CorpGroupApi.java | 20 +++++----- .../main/java/cn/felord/api/CorpTagApi.java | 20 +++++----- .../cn/felord/api/CustomerAcquisitionApi.java | 20 +++++----- .../java/cn/felord/api/DepartmentApi.java | 20 +++++----- .../src/main/java/cn/felord/api/DialApi.java | 20 +++++----- .../src/main/java/cn/felord/api/DocApi.java | 20 +++++----- .../main/java/cn/felord/api/DomainApi.java | 20 +++++----- .../java/cn/felord/api/DownStreamApi.java | 20 +++++----- .../cn/felord/api/ExternalContactManager.java | 20 +++++----- .../cn/felord/api/ExternalContactUserApi.java | 20 +++++----- .../java/cn/felord/api/ExternalCorPayApi.java | 20 +++++----- .../cn/felord/api/ExternalPayAccountApi.java | 20 +++++----- .../cn/felord/api/ExternalStatisticApi.java | 22 +++++------ .../java/cn/felord/api/FileManagerApi.java | 20 +++++----- .../src/main/java/cn/felord/api/FormApi.java | 20 +++++----- .../main/java/cn/felord/api/GroupChatApi.java | 20 +++++----- .../java/cn/felord/api/GroupMessageApi.java | 20 +++++----- .../felord/api/InternalAgentManagerApi.java | 20 +++++----- .../felord/api/InternalAgentMessageApi.java | 20 +++++----- .../java/cn/felord/api/InternalCorPayApi.java | 20 +++++----- .../cn/felord/api/InternalFileManagerApi.java | 20 +++++----- .../java/cn/felord/api/InternalMediaApi.java | 20 +++++----- .../cn/felord/api/InternalWebhookApi.java | 20 +++++----- .../main/java/cn/felord/api/InvoiceApi.java | 20 +++++----- .../main/java/cn/felord/api/JournalApi.java | 20 +++++----- .../src/main/java/cn/felord/api/JsApi.java | 20 +++++----- .../src/main/java/cn/felord/api/JsSdkApi.java | 20 +++++----- .../main/java/cn/felord/api/KfAccountApi.java | 20 +++++----- .../java/cn/felord/api/KfKnowledgeApi.java | 20 +++++----- .../java/cn/felord/api/KfServicerApi.java | 20 +++++----- .../main/java/cn/felord/api/KfSessionApi.java | 20 +++++----- .../java/cn/felord/api/KfStatisticApi.java | 20 +++++----- .../main/java/cn/felord/api/KfUpgradeApi.java | 20 +++++----- .../java/cn/felord/api/LinkedCorpApi.java | 20 +++++----- .../main/java/cn/felord/api/LivingApi.java | 20 +++++----- .../src/main/java/cn/felord/api/MediaApi.java | 20 +++++----- .../java/cn/felord/api/MeetingRoomApi.java | 20 +++++----- .../java/cn/felord/api/MiniAppPayApi.java | 20 +++++----- .../cn/felord/api/MmPayMktTransfersApi.java | 20 +++++----- .../main/java/cn/felord/api/MomentApi.java | 20 +++++----- .../main/java/cn/felord/api/MsgAuditApi.java | 20 +++++----- .../java/cn/felord/api/OffTransferApi.java | 20 +++++----- .../java/cn/felord/api/OnTransferApi.java | 20 +++++----- .../src/main/java/cn/felord/api/PayApi.java | 20 +++++----- .../java/cn/felord/api/ProductAlbumApi.java | 20 +++++----- .../main/java/cn/felord/api/ScheduleApi.java | 20 +++++----- .../main/java/cn/felord/api/SecurityApi.java | 20 +++++----- .../java/cn/felord/api/SmartSheetApi.java | 15 ++++++++ .../java/cn/felord/api/StaffManagerApi.java | 20 +++++----- .../src/main/java/cn/felord/api/TagApi.java | 20 +++++----- .../main/java/cn/felord/api/UpStreamApi.java | 20 +++++----- .../java/cn/felord/api/UrgentCallApi.java | 20 +++++----- .../src/main/java/cn/felord/api/UserApi.java | 20 +++++----- .../main/java/cn/felord/api/WeDriveApi.java | 20 +++++----- .../main/java/cn/felord/api/WebhookApi.java | 20 +++++----- .../src/main/java/cn/felord/api/WedocApi.java | 20 +++++----- .../java/cn/felord/api/WorkWeChatApi.java | 20 +++++----- .../cn/felord/api/WorkWeChatApiClient.java | 20 +++++----- wemp-objects/pom.xml | 15 -------- .../src/main/java/cn/felord/mp/MpApp.java | 20 +++++----- .../main/java/cn/felord/mp/WeMpCacheable.java | 20 +++++----- .../main/java/cn/felord/mp/WeMpException.java | 20 +++++----- .../cn/felord/mp/WeMpTicketCacheable.java | 20 +++++----- .../java/cn/felord/mp/WeMpTokenCacheable.java | 20 +++++----- .../felord/mp/domain/GenericMpResponse.java | 20 +++++----- .../java/cn/felord/mp/domain/MpResponse.java | 20 +++++----- .../domain/card/AbandonCardCodeRequest.java | 20 +++++----- .../felord/mp/domain/card/AbstractCard.java | 20 +++++----- .../felord/mp/domain/card/AbstractInfo.java | 20 +++++----- .../felord/mp/domain/card/ActivateForm.java | 22 +++++------ .../felord/mp/domain/card/AdvancedInfo.java | 22 +++++------ .../mp/domain/card/BatchCardRequest.java | 22 +++++------ .../mp/domain/card/BatchCardResponse.java | 22 +++++------ .../cn/felord/mp/domain/card/BindOldCard.java | 22 +++++------ .../cn/felord/mp/domain/card/BonusRule.java | 22 +++++------ .../cn/felord/mp/domain/card/CardBiz.java | 22 +++++------ .../felord/mp/domain/card/CardBizRequest.java | 22 +++++------ .../felord/mp/domain/card/CardDataList.java | 20 +++++----- .../java/cn/felord/mp/domain/card/CardId.java | 20 +++++----- .../cn/felord/mp/domain/card/CardIdInfo.java | 22 +++++------ .../mp/domain/card/CardInfoRequest.java | 20 +++++----- .../mp/domain/card/CardLandingRequest.java | 22 +++++------ .../mp/domain/card/CardLandingResponse.java | 22 +++++------ .../mp/domain/card/CardListResponse.java | 20 +++++----- .../mp/domain/card/CardPaySettingRequest.java | 22 +++++------ .../mp/domain/card/CardQrcodeRequest.java | 20 +++++----- .../mp/domain/card/CardQrcodeResponse.java | 22 +++++------ .../cn/felord/mp/domain/card/CardRequest.java | 22 +++++------ .../mp/domain/card/CardUpdateUserRequest.java | 22 +++++------ .../domain/card/CardUpdateUserResponse.java | 22 +++++------ .../felord/mp/domain/card/CardUserInfo.java | 22 +++++------ .../mp/domain/card/CardUserInfoResponse.java | 22 +++++------ .../cn/felord/mp/domain/card/CustomCell.java | 22 +++++------ .../cn/felord/mp/domain/card/CustomField.java | 22 +++++------ .../mp/domain/card/CustomFieldValue.java | 22 +++++------ .../cn/felord/mp/domain/card/DateInfo.java | 22 +++++------ .../mp/domain/card/DecryptCodeRequest.java | 20 +++++----- .../cn/felord/mp/domain/card/FreeCardBiz.java | 20 +++++----- .../cn/felord/mp/domain/card/MemberCard.java | 20 +++++----- .../domain/card/MemberCardActivateForm.java | 22 +++++------ .../card/MemberCardActivateRequest.java | 22 +++++------ .../mp/domain/card/MemberCardBaseInfo.java | 22 +++++------ .../felord/mp/domain/card/MemberCardBiz.java | 22 +++++------ .../mp/domain/card/MemberCardDetail.java | 22 +++++------ .../domain/card/MemberCardDetailRequest.java | 22 +++++------ .../felord/mp/domain/card/MemberCardInfo.java | 22 +++++------ .../cn/felord/mp/domain/card/MemberRule.java | 22 +++++------ .../mp/domain/card/ModifyStockRequest.java | 22 +++++------ .../felord/mp/domain/card/MultipleCard.java | 20 +++++----- .../mp/domain/card/MultipleCardInfo.java | 22 +++++------ .../mp/domain/card/MultipleQrcodeRequest.java | 20 +++++----- .../felord/mp/domain/card/NotifyOptional.java | 22 +++++------ .../felord/mp/domain/card/OpenUserCard.java | 20 +++++----- .../mp/domain/card/PayGiftFailMchid.java | 22 +++++------ .../felord/mp/domain/card/PayGiftRuleId.java | 20 +++++----- .../mp/domain/card/PayGiftRuleInfo.java | 22 +++++------ .../mp/domain/card/PayGiftRulesRequest.java | 22 +++++------ .../mp/domain/card/PayGiftRulesResponse.java | 22 +++++------ .../cn/felord/mp/domain/card/PayInfo.java | 20 +++++----- .../cn/felord/mp/domain/card/RichField.java | 22 +++++------ .../felord/mp/domain/card/RuleBaseInfo.java | 22 +++++------ .../mp/domain/card/ServiceStatement.java | 22 +++++------ .../mp/domain/card/SingleActionInfo.java | 20 +++++----- .../cn/felord/mp/domain/card/SingleCard.java | 22 +++++------ .../mp/domain/card/SingleQrcodeRequest.java | 20 +++++----- .../java/cn/felord/mp/domain/card/Sku.java | 22 +++++------ .../cn/felord/mp/domain/card/SwipeCard.java | 20 +++++----- .../mp/domain/card/TestWhiteListRequest.java | 20 +++++----- .../cn/felord/mp/domain/card/TextImage.java | 22 +++++------ .../felord/mp/domain/card/UpdateBaseInfo.java | 20 +++++----- .../cn/felord/mp/domain/card/UpdateCard.java | 20 +++++----- .../mp/domain/card/UpdateCardRequest.java | 20 +++++----- .../mp/domain/card/UpdateCodeRequest.java | 20 +++++----- .../felord/mp/domain/card/UseCondition.java | 22 +++++------ .../cn/felord/mp/domain/card/UserCard.java | 22 +++++------ .../felord/mp/domain/card/UserCardInfo.java | 20 +++++----- .../mp/domain/card/UserCardRequest.java | 22 +++++------ .../mp/domain/card/UserCardResponse.java | 22 +++++------ .../felord/mp/domain/card/WeekDayLimit.java | 22 +++++------ .../java/cn/felord/mp/domain/common/KV.java | 22 +++++------ .../cn/felord/mp/domain/media/MediaUrl.java | 20 +++++----- .../felord/mp/domain/message/MessageBody.java | 22 +++++------ .../felord/mp/domain/message/Miniprogram.java | 22 +++++------ .../mp/domain/message/TemplateValue.java | 20 +++++----- .../mp/enumeration/BusinessService.java | 20 +++++----- .../cn/felord/mp/enumeration/CardBgColor.java | 20 +++++----- .../felord/mp/enumeration/CardCodeType.java | 20 +++++----- .../cn/felord/mp/enumeration/CardStatus.java | 20 +++++----- .../felord/mp/enumeration/CardTimeType.java | 20 +++++----- .../cn/felord/mp/enumeration/CardType.java | 20 +++++----- .../cn/felord/mp/enumeration/CommonField.java | 20 +++++----- .../cn/felord/mp/enumeration/CondSource.java | 20 +++++----- .../felord/mp/enumeration/DateInfoType.java | 20 +++++----- .../mp/enumeration/MemberCardFieldType.java | 20 +++++----- .../felord/mp/enumeration/RichFieldType.java | 20 +++++----- .../felord/mp/enumeration/UserCardStatus.java | 20 +++++----- .../cn/felord/mp/enumeration/WeekDay.java | 20 +++++----- .../felord/mp/retrofit/AbstractTokenApi.java | 20 +++++----- .../cn/felord/mp/retrofit/AccessTokenApi.java | 20 +++++----- .../mp/retrofit/AccessTokenResponse.java | 20 +++++----- .../ResponseBodyCallAdapterFactory.java | 20 +++++----- .../mp/retrofit/RetrofitAccessTokenApi.java | 20 +++++----- .../java/cn/felord/mp/retrofit/TokenApi.java | 20 +++++----- .../felord/mp/retrofit/TokenInterceptor.java | 20 +++++----- .../mp/retrofit/WechatMpRetrofitFactory.java | 20 +++++----- wemp-sdk/pom.xml | 15 -------- .../main/java/cn/felord/mp/api/CardApi.java | 20 +++++----- .../cn/felord/mp/api/InternalMediaApi.java | 20 +++++----- .../main/java/cn/felord/mp/api/MediaApi.java | 20 +++++----- .../java/cn/felord/mp/api/MessageApi.java | 20 +++++----- .../cn/felord/mp/api/WeChatMpApiClient.java | 20 +++++----- .../java/cn/felord/mp/api/WechatMpApi.java | 20 +++++----- wepay-objects/pom.xml | 15 -------- .../java/cn/felord/payment/PayException.java | 20 +++++----- .../wechat/enumeration/ActivityStatus.java | 20 +++++----- .../payment/wechat/enumeration/AwardType.java | 20 +++++----- .../payment/wechat/enumeration/BankCode.java | 20 +++++----- .../enumeration/BusiFavorCodeDisplayMode.java | 20 +++++----- .../wechat/enumeration/BusiFavorState.java | 20 +++++----- .../enumeration/BusiFavorUseMethod.java | 20 +++++----- .../wechat/enumeration/BusinessCertType.java | 20 +++++----- .../wechat/enumeration/BusinessType.java | 20 +++++----- .../wechat/enumeration/ContactType.java | 20 +++++----- .../wechat/enumeration/ContractStatus.java | 20 +++++----- .../payment/wechat/enumeration/CountType.java | 20 +++++----- .../wechat/enumeration/CouponBgColor.java | 20 +++++----- .../wechat/enumeration/CouponCodeMode.java | 22 +++++------ .../wechat/enumeration/CouponState.java | 20 +++++----- .../wechat/enumeration/DeliveryPurpose.java | 20 +++++----- .../enumeration/DeliveryUserCategory.java | 20 +++++----- .../wechat/enumeration/DetailStatus.java | 20 +++++----- .../wechat/enumeration/FinanceType.java | 20 +++++----- .../wechat/enumeration/FundAccountType.java | 20 +++++----- .../enumeration/FundFlowAccountType.java | 20 +++++----- .../wechat/enumeration/H5SceneType.java | 20 +++++----- .../payment/wechat/enumeration/IdDocType.java | 20 +++++----- .../wechat/enumeration/PartnerType.java | 20 +++++----- .../wechat/enumeration/PartnershipState.java | 20 +++++----- .../enumeration/PayScoreOrderState.java | 20 +++++----- .../payment/wechat/enumeration/PayType.java | 20 +++++----- .../wechat/enumeration/PlateColor.java | 20 +++++----- .../wechat/enumeration/PromotionScope.java | 20 +++++----- .../wechat/enumeration/PromotionType.java | 20 +++++----- .../wechat/enumeration/ReceiverType.java | 22 +++++------ .../wechat/enumeration/RefundChannel.java | 20 +++++----- .../enumeration/RefundPromotionType.java | 20 +++++----- .../wechat/enumeration/RefundResult.java | 20 +++++----- .../wechat/enumeration/RefundStatus.java | 20 +++++----- .../wechat/enumeration/RiskFundType.java | 20 +++++----- .../wechat/enumeration/SendContent.java | 20 +++++----- .../wechat/enumeration/StateDescription.java | 20 +++++----- .../wechat/enumeration/StockStatus.java | 20 +++++----- .../payment/wechat/enumeration/StockType.java | 20 +++++----- .../wechat/enumeration/StrategyType.java | 20 +++++----- .../wechat/enumeration/SubjectType.java | 20 +++++----- .../wechat/enumeration/SubsidyFailReason.java | 20 +++++----- .../wechat/enumeration/SubsidyStatus.java | 20 +++++----- .../payment/wechat/enumeration/TarType.java | 20 +++++----- .../wechat/enumeration/TradeBillType.java | 20 +++++----- .../wechat/enumeration/TradeState.java | 20 +++++----- .../payment/wechat/enumeration/TradeType.java | 20 +++++----- .../enumeration/TransferAcceptType.java | 20 +++++----- .../wechat/enumeration/UnfinishedReason.java | 20 +++++----- .../wechat/enumeration/WeChatServer.java | 20 +++++----- .../enumeration/WechatPayAlgorithms.java | 20 +++++----- .../payment/wechat/v3/WepaySdkVersion.java | 20 +++++----- .../payment/wechat/v3/crypto/AppMerchant.java | 20 +++++----- .../wechat/v3/crypto/AppMerchantService.java | 20 +++++----- .../payment/wechat/v3/crypto/AuthType.java | 20 +++++----- .../payment/wechat/v3/crypto/CipherAlg.java | 20 +++++----- .../wechat/v3/crypto/DefaultWecomCipher.java | 20 +++++----- .../v3/crypto/FileMerchantKeyLoader.java | 20 +++++----- .../payment/wechat/v3/crypto/TenpayKey.java | 20 +++++----- .../wechat/v3/crypto/WechatPaySigner.java | 20 +++++----- .../payment/wechat/v3/crypto/WecomCipher.java | 20 +++++----- .../wechat/v3/domain/GenericPayResponse.java | 20 +++++----- .../wechat/v3/domain/WechatPayResponse.java | 20 +++++----- .../v3/domain/busifavor/AssociateTime.java | 20 +++++----- .../busifavor/AvailableDayTimeItem.java | 22 +++++------ .../v3/domain/busifavor/AvailableWeek.java | 22 +++++------ .../domain/busifavor/CodeUploadResponse.java | 22 +++++------ .../domain/busifavor/CouponAvailableTime.java | 22 +++++------ .../busifavor/CouponCodeUploadParams.java | 20 +++++----- .../v3/domain/busifavor/CouponDetail.java | 20 +++++----- .../v3/domain/busifavor/CouponUseRule.java | 22 +++++------ .../v3/domain/busifavor/CustomEntrance.java | 22 +++++------ .../v3/domain/busifavor/DiscountCoupon.java | 22 +++++------ .../domain/busifavor/DisplayPatternInfo.java | 22 +++++------ .../v3/domain/busifavor/ExchangeCoupon.java | 22 +++++------ .../wechat/v3/domain/busifavor/FailCode.java | 22 +++++------ .../domain/busifavor/FavorAssociateInfo.java | 20 +++++----- .../domain/busifavor/FavorBudgetParams.java | 20 +++++----- .../domain/busifavor/FavorBudgetResponse.java | 22 +++++------ .../busifavor/FavorCallbackSetting.java | 20 +++++----- .../domain/busifavor/FavorCreateParams.java | 22 +++++------ .../busifavor/FavorDeactivateParams.java | 20 +++++----- .../domain/busifavor/FavorNotifyConfig.java | 20 +++++----- .../busifavor/FavorReceiveConsumeData.java | 20 +++++----- .../domain/busifavor/FavorRefundParams.java | 20 +++++----- .../busifavor/FavorReturnSubsidyResponse.java | 22 +++++------ .../busifavor/FavorSubsidyListRequest.java | 20 +++++----- .../busifavor/FavorSubsidyListResponse.java | 20 +++++----- .../domain/busifavor/FavorSubsidyParams.java | 20 +++++----- .../busifavor/FavorSubsidyResponse.java | 22 +++++------ .../busifavor/FavorSubsidyReturnParams.java | 20 +++++----- .../domain/busifavor/FavorUpdateParams.java | 22 +++++------ .../v3/domain/busifavor/FavorUseParams.java | 20 +++++----- .../v3/domain/busifavor/FavorUseResponse.java | 20 +++++----- .../domain/busifavor/FixedNormalCoupon.java | 22 +++++------ .../IrregularyAvaliableTimeItem.java | 22 +++++------ .../v3/domain/busifavor/MiniProgramsInfo.java | 22 +++++------ .../domain/busifavor/StockDetailResponse.java | 20 +++++----- .../v3/domain/busifavor/StockResponse.java | 20 +++++----- .../v3/domain/busifavor/StockSendRule.java | 22 +++++------ .../domain/busifavor/UserCouponResponse.java | 20 +++++----- .../busifavor/UserCouponsDetailResponse.java | 20 +++++----- .../busifavor/UserFavorQueryParams.java | 20 +++++----- .../domain/busifavor/WechatChannelInfo.java | 20 +++++----- .../certificate/EncryptCertificate.java | 22 +++++------ .../domain/certificate/TenpayCertificate.java | 22 +++++------ .../v3/domain/direct/basepay/Amount.java | 20 +++++----- .../direct/basepay/AppNativePayRequest.java | 20 +++++----- .../domain/direct/basepay/AppPayResponse.java | 20 +++++----- .../direct/basepay/BillUrlResponse.java | 20 +++++----- .../domain/direct/basepay/BufferSource.java | 20 +++++----- .../v3/domain/direct/basepay/Detail.java | 20 +++++----- .../direct/basepay/FundFlowBillRequest.java | 20 +++++----- .../v3/domain/direct/basepay/Goods.java | 20 +++++----- .../v3/domain/direct/basepay/GoodsDetail.java | 22 +++++------ .../v3/domain/direct/basepay/H5Info.java | 20 +++++----- .../domain/direct/basepay/H5PayRequest.java | 20 +++++----- .../domain/direct/basepay/JsPayRequest.java | 20 +++++----- .../domain/direct/basepay/JsPayResponse.java | 20 +++++----- .../v3/domain/direct/basepay/MchId.java | 20 +++++----- .../direct/basepay/PayDetailResponse.java | 20 +++++----- .../domain/direct/basepay/PayOrderAmount.java | 20 +++++----- .../v3/domain/direct/basepay/PayParams.java | 20 +++++----- .../v3/domain/direct/basepay/Payer.java | 20 +++++----- .../domain/direct/basepay/PrepayResponse.java | 20 +++++----- .../direct/basepay/PromotionDetail.java | 20 +++++----- .../domain/direct/basepay/PromotionInfo.java | 20 +++++----- .../domain/direct/basepay/RefundAmount.java | 20 +++++----- .../direct/basepay/RefundAmountDetail.java | 20 +++++----- .../v3/domain/direct/basepay/RefundForm.java | 20 +++++----- .../direct/basepay/RefundGoodsDetail.java | 20 +++++----- .../direct/basepay/RefundPromotionDetail.java | 20 +++++----- .../domain/direct/basepay/RefundRequest.java | 20 +++++----- .../domain/direct/basepay/RefundResponse.java | 20 +++++----- .../v3/domain/direct/basepay/SceneInfo.java | 20 +++++----- .../v3/domain/direct/basepay/SettleInfo.java | 20 +++++----- .../direct/basepay/SimpleSceneInfo.java | 20 +++++----- .../v3/domain/direct/basepay/StoreInfo.java | 20 +++++----- .../v3/domain/direct/basepay/TotalAmount.java | 20 +++++----- .../direct/basepay/TradeBillRequest.java | 20 +++++----- .../basepay/combine/CombineAppPayRequest.java | 20 +++++----- .../basepay/combine/CombineCloseOrder.java | 20 +++++----- .../basepay/combine/CombineCloseParams.java | 20 +++++----- .../basepay/combine/CombineH5PayRequest.java | 20 +++++----- .../basepay/combine/CombineH5SceneInfo.java | 20 +++++----- .../basepay/combine/CombineJsPayRequest.java | 20 +++++----- .../combine/CombineNativePayRequest.java | 20 +++++----- .../combine/CombinePayCloseParams.java | 20 +++++----- .../combine/CombinePayCloseRequest.java | 20 +++++----- .../combine/CombinePayDetailResponse.java | 20 +++++----- .../basepay/combine/CombinePayParams.java | 20 +++++----- .../basepay/combine/CombineSceneInfo.java | 20 +++++----- .../CombineTransactionConsumeData.java | 20 +++++----- .../direct/basepay/combine/SubOrder.java | 20 +++++----- .../v3/domain/payscore/CancelRequest.java | 22 +++++------ .../v3/domain/payscore/CancelResponse.java | 22 +++++------ .../wechat/v3/domain/payscore/Location.java | 20 +++++----- .../v3/domain/payscore/ModifyRequest.java | 22 +++++------ .../v3/domain/payscore/PayScoreOrder.java | 20 +++++----- .../payscore/PayScoreOrderResponse.java | 22 +++++------ .../v3/domain/payscore/PostDiscount.java | 20 +++++----- .../v3/domain/payscore/PostPayment.java | 20 +++++----- .../payscore/QueryServiceOrderParams.java | 20 +++++----- .../wechat/v3/domain/payscore/RiskFund.java | 20 +++++----- .../wechat/v3/domain/payscore/TimeRange.java | 20 +++++----- .../payscore/UserServiceOrderParams.java | 20 +++++----- .../AbstractAuthorizationInterceptor.java | 20 +++++----- .../wechat/v3/retrofit/HttpHeaders.java | 20 +++++----- .../v3/retrofit/InMemoryTenpayKeyCache.java | 20 +++++----- .../v3/retrofit/InternalCertificateApi.java | 20 +++++----- .../ResponseBodyCallAdapterFactory.java | 20 +++++----- .../v3/retrofit/TenpayCertificateService.java | 20 +++++----- .../wechat/v3/retrofit/TenpayKeyCache.java | 20 +++++----- .../WechatAuthorizationInterceptor.java | 20 +++++----- .../v3/retrofit/WechatPayRetrofitFactory.java | 20 +++++----- wepay-sdk/pom.xml | 15 -------- .../wechat/v3/api/direct/CombinePayApi.java | 20 +++++----- .../v3/api/direct/DirectBasePayApi.java | 20 +++++----- .../v3/api/direct/InternalBasePayApi.java | 20 +++++----- .../v3/api/direct/InternalCombinePayApi.java | 20 +++++----- .../v3/api/direct/InternalPayScoreApi.java | 20 +++++----- .../v3/api/direct/MarketingBusiFavorApi.java | 20 +++++----- .../wechat/v3/api/direct/WechatPayApi.java | 20 +++++----- 1795 files changed, 18703 insertions(+), 17128 deletions(-) diff --git a/pom.xml b/pom.xml index 72dcbca1..3928824c 100644 --- a/pom.xml +++ b/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/rx-wecom-sdk/pom.xml b/rx-wecom-sdk/pom.xml index 7e551784..c3cbb206 100644 --- a/rx-wecom-sdk/pom.xml +++ b/rx-wecom-sdk/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentApi.java index 86361499..6daf4f6c 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentManagerApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentManagerApi.java index 5b3ceff6..0d9e516f 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentManagerApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentMessageApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentMessageApi.java index c6f66db8..08f0ffef 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentMessageApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AgentMessageApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ApprovalApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ApprovalApi.java index d4b7fba5..bae4a853 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ApprovalApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ApprovalApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AsynchronousBatchImportApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AsynchronousBatchImportApi.java index f2e1adcd..3267df5f 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AsynchronousBatchImportApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AsynchronousBatchImportApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AuthApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AuthApi.java index 6ab403e8..bc0707cc 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AuthApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/AuthApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CalendarApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CalendarApi.java index a5e1cee4..6ad774a2 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CalendarApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CalendarApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CallCenterManager.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CallCenterManager.java index bef2bbb0..a7c5354c 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CallCenterManager.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CallCenterManager.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ChainRuleApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ChainRuleApi.java index e1171015..1fc76f51 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ChainRuleApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ChainRuleApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ChatInterceptRuleApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ChatInterceptRuleApi.java index d23d3ea7..a2b3901a 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ChatInterceptRuleApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ChatInterceptRuleApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CheckinApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CheckinApi.java index 2c29c2f7..a06e5a0e 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CheckinApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CheckinApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ContactBookManager.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ContactBookManager.java index 2a46e856..147a5b22 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ContactBookManager.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ContactBookManager.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ContactMeWayApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ContactMeWayApi.java index 73ea035e..593355b1 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ContactMeWayApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ContactMeWayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CorpGroupApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CorpGroupApi.java index a045d31c..db19542f 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CorpGroupApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CorpGroupApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CorpTagApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CorpTagApi.java index 8d61f45a..5883ea51 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CorpTagApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CorpTagApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CustomerAcquisitionApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CustomerAcquisitionApi.java index 50a30150..ad7504dd 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CustomerAcquisitionApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/CustomerAcquisitionApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DepartmentApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DepartmentApi.java index d2cd6d7c..e2153965 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DepartmentApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DepartmentApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DialApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DialApi.java index f8bf95f6..ed075700 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DialApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DialApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DocApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DocApi.java index 5ac996b5..f0e04cf9 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DocApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DocApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DomainApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DomainApi.java index 2826631b..b7c93a32 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DomainApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DomainApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DownStreamApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DownStreamApi.java index 55535bec..62d28400 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DownStreamApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/DownStreamApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalContactManager.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalContactManager.java index c9e67035..23ef9524 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalContactManager.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalContactManager.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalContactUserApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalContactUserApi.java index 501e6d65..820b77db 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalContactUserApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalContactUserApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalCorPayApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalCorPayApi.java index b7c9104f..b4ff4f92 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalCorPayApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalCorPayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalPayAccountApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalPayAccountApi.java index 2a543896..b6b35ad1 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalPayAccountApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalPayAccountApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalStatisticApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalStatisticApi.java index 9af74cc4..ab473d73 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalStatisticApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ExternalStatisticApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; @@ -64,4 +64,4 @@ public interface ExternalStatisticApi { */ @POST("externalcontact/groupchat/statistic_group_by_day") Single> getGroupChatData(@Body GroupChatDayDataRequest request); -} \ No newline at end of file +} diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/FileManagerApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/FileManagerApi.java index 96637ff1..dd858050 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/FileManagerApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/FileManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/FormApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/FormApi.java index 7afb4a7c..84ed2606 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/FormApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/FormApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/GroupChatApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/GroupChatApi.java index b7589dba..1f9fd965 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/GroupChatApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/GroupChatApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/GroupMessageApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/GroupMessageApi.java index 2ec0876e..4bbd9b01 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/GroupMessageApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/GroupMessageApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalAgentManagerApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalAgentManagerApi.java index feb6aee2..3a25933b 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalAgentManagerApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalAgentManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalAgentMessageApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalAgentMessageApi.java index 347368b2..ff5ad16d 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalAgentMessageApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalAgentMessageApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalCorPayApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalCorPayApi.java index a9058d2d..e5037cf0 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalCorPayApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalCorPayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalFileManagerApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalFileManagerApi.java index 72418631..cfcc35a5 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalFileManagerApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalFileManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalMediaApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalMediaApi.java index e6a9ce6e..0bf250f2 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalMediaApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalMediaApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalWebhookApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalWebhookApi.java index c0d7f706..4e9119d6 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalWebhookApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InternalWebhookApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InvoiceApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InvoiceApi.java index 3207c586..446042ce 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InvoiceApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/InvoiceApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JournalApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JournalApi.java index 9615de72..f49f6ae7 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JournalApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JournalApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JsApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JsApi.java index fc9ec0ea..528c9b51 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JsApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JsApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JsSdkApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JsSdkApi.java index 3491ab29..6a2345ac 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JsSdkApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/JsSdkApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfAccountApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfAccountApi.java index 3e0b290f..d94e2b11 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfAccountApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfAccountApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfKnowledgeApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfKnowledgeApi.java index 880d5d67..d61c61f9 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfKnowledgeApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfKnowledgeApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfServicerApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfServicerApi.java index a07896d8..ba6818bf 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfServicerApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfServicerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfSessionApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfSessionApi.java index 12fa4529..1bafb1ab 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfSessionApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfSessionApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfStatisticApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfStatisticApi.java index 9add9b48..9faa8635 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfStatisticApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfStatisticApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfUpgradeApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfUpgradeApi.java index 6a7044fa..16c6fe5d 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfUpgradeApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/KfUpgradeApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/LinkedCorpApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/LinkedCorpApi.java index cf7660b0..987c59a8 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/LinkedCorpApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/LinkedCorpApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/LivingApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/LivingApi.java index 18b36ae6..ab3cfd9c 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/LivingApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/LivingApi.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.reactive.api; import cn.felord.domain.GenericResponse; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MediaApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MediaApi.java index 118c1d9a..e1686d5b 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MediaApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MediaApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MeetingRoomApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MeetingRoomApi.java index d953ea3d..0384ac94 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MeetingRoomApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MeetingRoomApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MiniAppPayApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MiniAppPayApi.java index c655497a..3760ebec 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MiniAppPayApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MiniAppPayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MmPayMktTransfersApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MmPayMktTransfersApi.java index b5ec62f9..db0c00b3 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MmPayMktTransfersApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MmPayMktTransfersApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MomentApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MomentApi.java index 18a05082..041289cc 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MomentApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MomentApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MsgAuditApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MsgAuditApi.java index 2f020e60..cb985098 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MsgAuditApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/MsgAuditApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/OffTransferApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/OffTransferApi.java index cb95bb14..7ec6626b 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/OffTransferApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/OffTransferApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/OnTransferApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/OnTransferApi.java index de5b1d4b..c2ebe184 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/OnTransferApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/OnTransferApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/PayApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/PayApi.java index 1ddc3122..ebd33d70 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/PayApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/PayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ProductAlbumApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ProductAlbumApi.java index 3b902829..e66971cc 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ProductAlbumApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ProductAlbumApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ScheduleApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ScheduleApi.java index 28ddcbd0..053ba370 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ScheduleApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/ScheduleApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/SecurityApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/SecurityApi.java index 997f5f40..5547bf8d 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/SecurityApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/SecurityApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/StaffManagerApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/StaffManagerApi.java index cc7475f5..6f0d2536 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/StaffManagerApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/StaffManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/TagApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/TagApi.java index a2218d2d..f30810ee 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/TagApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/TagApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UpStreamApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UpStreamApi.java index 5a2be3f3..20d061cc 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UpStreamApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UpStreamApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UrgentCallApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UrgentCallApi.java index 24482c9f..1a559898 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UrgentCallApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UrgentCallApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UserApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UserApi.java index 1f346c32..4e988a4f 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UserApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/UserApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WeDriveApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WeDriveApi.java index f14d26cb..3ab29e97 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WeDriveApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WeDriveApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WebhookApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WebhookApi.java index 3a458a8e..13613586 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WebhookApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WebhookApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WedocApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WedocApi.java index 37f63d70..12917d18 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WedocApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WedocApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WorkWeChatApi.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WorkWeChatApi.java index 84d73ffe..94da12a3 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WorkWeChatApi.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WorkWeChatApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WorkWeChatApiClient.java b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WorkWeChatApiClient.java index a1c538cb..fb12bd7b 100644 --- a/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WorkWeChatApiClient.java +++ b/rx-wecom-sdk/src/main/java/cn/felord/reactive/api/WorkWeChatApiClient.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.reactive.api; diff --git a/wecom-common/pom.xml b/wecom-common/pom.xml index 85180927..c5758020 100644 --- a/wecom-common/pom.xml +++ b/wecom-common/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/wecom-common/src/main/java/cn/felord/callback/AbstractCallbackCrypto.java b/wecom-common/src/main/java/cn/felord/callback/AbstractCallbackCrypto.java index c564f59f..97b6d60d 100644 --- a/wecom-common/src/main/java/cn/felord/callback/AbstractCallbackCrypto.java +++ b/wecom-common/src/main/java/cn/felord/callback/AbstractCallbackCrypto.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; @@ -272,4 +272,4 @@ String randomStr() { .toString(); } -} \ No newline at end of file +} diff --git a/wecom-common/src/main/java/cn/felord/callback/ByteCollector.java b/wecom-common/src/main/java/cn/felord/callback/ByteCollector.java index 35eb5242..fd2451fd 100644 --- a/wecom-common/src/main/java/cn/felord/callback/ByteCollector.java +++ b/wecom-common/src/main/java/cn/felord/callback/ByteCollector.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; diff --git a/wecom-common/src/main/java/cn/felord/callback/CallbackAsyncConsumer.java b/wecom-common/src/main/java/cn/felord/callback/CallbackAsyncConsumer.java index 245191f0..e95ef423 100644 --- a/wecom-common/src/main/java/cn/felord/callback/CallbackAsyncConsumer.java +++ b/wecom-common/src/main/java/cn/felord/callback/CallbackAsyncConsumer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; diff --git a/wecom-common/src/main/java/cn/felord/callback/CallbackDecrypted.java b/wecom-common/src/main/java/cn/felord/callback/CallbackDecrypted.java index 0bfbc758..e97f4415 100644 --- a/wecom-common/src/main/java/cn/felord/callback/CallbackDecrypted.java +++ b/wecom-common/src/main/java/cn/felord/callback/CallbackDecrypted.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; diff --git a/wecom-common/src/main/java/cn/felord/callback/CallbackResponse.java b/wecom-common/src/main/java/cn/felord/callback/CallbackResponse.java index d8840b0c..fd6492a6 100644 --- a/wecom-common/src/main/java/cn/felord/callback/CallbackResponse.java +++ b/wecom-common/src/main/java/cn/felord/callback/CallbackResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; diff --git a/wecom-common/src/main/java/cn/felord/callback/CallbackSettings.java b/wecom-common/src/main/java/cn/felord/callback/CallbackSettings.java index 5fbbec57..a89ced60 100644 --- a/wecom-common/src/main/java/cn/felord/callback/CallbackSettings.java +++ b/wecom-common/src/main/java/cn/felord/callback/CallbackSettings.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; diff --git a/wecom-common/src/main/java/cn/felord/callback/CallbackXmlResponse.java b/wecom-common/src/main/java/cn/felord/callback/CallbackXmlResponse.java index c8d70423..f7d81673 100644 --- a/wecom-common/src/main/java/cn/felord/callback/CallbackXmlResponse.java +++ b/wecom-common/src/main/java/cn/felord/callback/CallbackXmlResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; diff --git a/wecom-common/src/main/java/cn/felord/callback/CustomizableThreadFactory.java b/wecom-common/src/main/java/cn/felord/callback/CustomizableThreadFactory.java index b2600691..4e11bfef 100644 --- a/wecom-common/src/main/java/cn/felord/callback/CustomizableThreadFactory.java +++ b/wecom-common/src/main/java/cn/felord/callback/CustomizableThreadFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; diff --git a/wecom-common/src/main/java/cn/felord/callback/PKCS7Encoder.java b/wecom-common/src/main/java/cn/felord/callback/PKCS7Encoder.java index 0a6db69c..f4c49307 100644 --- a/wecom-common/src/main/java/cn/felord/callback/PKCS7Encoder.java +++ b/wecom-common/src/main/java/cn/felord/callback/PKCS7Encoder.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ // ------------------------------------------------------------------------ @@ -28,7 +28,7 @@ class PKCS7Encoder { /** * 获得对明文进行补位填充的字节. - * + * * @param count 需要进行填充补位操作的明文字节个数 * @return 补齐用的字节数组 */ @@ -46,7 +46,7 @@ static byte[] encode(int count) { /** * 删除解密后明文的补位字符 - * + * * @param decrypted 解密后的明文 * @return 删除补位字符后的明文 */ @@ -60,7 +60,7 @@ static byte[] decode(byte[] decrypted) { /** * 将数字转化成ASCII码对应的字符,用于对明文进行补码 - * + * * @param a 需要转化的数字 * @return 转化得到的字符 */ diff --git a/wecom-common/src/main/java/cn/felord/callback/XmlEntity.java b/wecom-common/src/main/java/cn/felord/callback/XmlEntity.java index fbeb9dbf..56f982f0 100644 --- a/wecom-common/src/main/java/cn/felord/callback/XmlEntity.java +++ b/wecom-common/src/main/java/cn/felord/callback/XmlEntity.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callback; diff --git a/wecom-common/src/main/java/cn/felord/domain/FileMediaType.java b/wecom-common/src/main/java/cn/felord/domain/FileMediaType.java index a5c10767..84302c21 100644 --- a/wecom-common/src/main/java/cn/felord/domain/FileMediaType.java +++ b/wecom-common/src/main/java/cn/felord/domain/FileMediaType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain; diff --git a/wecom-common/src/main/java/cn/felord/domain/MiniprogramSession.java b/wecom-common/src/main/java/cn/felord/domain/MiniprogramSession.java index dd7ecba0..8a3b941c 100644 --- a/wecom-common/src/main/java/cn/felord/domain/MiniprogramSession.java +++ b/wecom-common/src/main/java/cn/felord/domain/MiniprogramSession.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-common/src/main/java/cn/felord/domain/MultipartResource.java b/wecom-common/src/main/java/cn/felord/domain/MultipartResource.java index ceeedfb4..6a560ddb 100644 --- a/wecom-common/src/main/java/cn/felord/domain/MultipartResource.java +++ b/wecom-common/src/main/java/cn/felord/domain/MultipartResource.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/VoidResponse.java b/wecom-common/src/main/java/cn/felord/retrofit/VoidResponse.java index f98a0f10..f2323127 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/VoidResponse.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/VoidResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/WecomUserAgent.java b/wecom-common/src/main/java/cn/felord/retrofit/WecomUserAgent.java index 6f86a9b4..3e22c5f9 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/WecomUserAgent.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/WecomUserAgent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonObjectMapperFactory.java b/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonObjectMapperFactory.java index b795900b..20bfde9c 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonObjectMapperFactory.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonObjectMapperFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit.json; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonRequestBodyConverter.java b/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonRequestBodyConverter.java index 6bf4aaf0..0f09ed75 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonRequestBodyConverter.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonRequestBodyConverter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit.json; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonResponseBodyConverter.java b/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonResponseBodyConverter.java index 8b36d540..8c13fa48 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonResponseBodyConverter.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/json/JacksonResponseBodyConverter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit.json; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/json/JsonConverterFactory.java b/wecom-common/src/main/java/cn/felord/retrofit/json/JsonConverterFactory.java index f55f7d74..eeb35a33 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/json/JsonConverterFactory.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/json/JsonConverterFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit.json; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/json/UnixInstantSerializer.java b/wecom-common/src/main/java/cn/felord/retrofit/json/UnixInstantSerializer.java index 8063c36b..420c618c 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/json/UnixInstantSerializer.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/json/UnixInstantSerializer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit.json; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/json/YearMonthNumberDeserializer.java b/wecom-common/src/main/java/cn/felord/retrofit/json/YearMonthNumberDeserializer.java index 311a183a..7bdab959 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/json/YearMonthNumberDeserializer.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/json/YearMonthNumberDeserializer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit.json; diff --git a/wecom-common/src/main/java/cn/felord/retrofit/ssl/SSLManager.java b/wecom-common/src/main/java/cn/felord/retrofit/ssl/SSLManager.java index 4b033b88..98306e36 100644 --- a/wecom-common/src/main/java/cn/felord/retrofit/ssl/SSLManager.java +++ b/wecom-common/src/main/java/cn/felord/retrofit/ssl/SSLManager.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit.ssl; diff --git a/wecom-common/src/main/java/cn/felord/utils/Algorithms.java b/wecom-common/src/main/java/cn/felord/utils/Algorithms.java index a558cf8e..865a205f 100644 --- a/wecom-common/src/main/java/cn/felord/utils/Algorithms.java +++ b/wecom-common/src/main/java/cn/felord/utils/Algorithms.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/utils/AlternativeJdkIdGenerator.java b/wecom-common/src/main/java/cn/felord/utils/AlternativeJdkIdGenerator.java index 7b6af0c6..9e793c92 100644 --- a/wecom-common/src/main/java/cn/felord/utils/AlternativeJdkIdGenerator.java +++ b/wecom-common/src/main/java/cn/felord/utils/AlternativeJdkIdGenerator.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/utils/Assert.java b/wecom-common/src/main/java/cn/felord/utils/Assert.java index a140fac0..ce11f77d 100644 --- a/wecom-common/src/main/java/cn/felord/utils/Assert.java +++ b/wecom-common/src/main/java/cn/felord/utils/Assert.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/utils/Base64Utils.java b/wecom-common/src/main/java/cn/felord/utils/Base64Utils.java index 688a3952..8a29e77e 100644 --- a/wecom-common/src/main/java/cn/felord/utils/Base64Utils.java +++ b/wecom-common/src/main/java/cn/felord/utils/Base64Utils.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; @@ -138,4 +138,4 @@ public static byte[] decodeFromUrlSafeString(String src) { return decodeUrlSafe(src.getBytes(DEFAULT_CHARSET)); } -} \ No newline at end of file +} diff --git a/wecom-common/src/main/java/cn/felord/utils/CollectionUtils.java b/wecom-common/src/main/java/cn/felord/utils/CollectionUtils.java index b053e282..6c76ef40 100644 --- a/wecom-common/src/main/java/cn/felord/utils/CollectionUtils.java +++ b/wecom-common/src/main/java/cn/felord/utils/CollectionUtils.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/utils/FileTools.java b/wecom-common/src/main/java/cn/felord/utils/FileTools.java index 0d52b383..19191e94 100644 --- a/wecom-common/src/main/java/cn/felord/utils/FileTools.java +++ b/wecom-common/src/main/java/cn/felord/utils/FileTools.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/utils/Hex.java b/wecom-common/src/main/java/cn/felord/utils/Hex.java index b6196adc..4c75a933 100644 --- a/wecom-common/src/main/java/cn/felord/utils/Hex.java +++ b/wecom-common/src/main/java/cn/felord/utils/Hex.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/utils/MediaUtil.java b/wecom-common/src/main/java/cn/felord/utils/MediaUtil.java index 4d44a047..78eae41c 100644 --- a/wecom-common/src/main/java/cn/felord/utils/MediaUtil.java +++ b/wecom-common/src/main/java/cn/felord/utils/MediaUtil.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/utils/OkHttpUtil.java b/wecom-common/src/main/java/cn/felord/utils/OkHttpUtil.java index 0c854104..473c7a1c 100644 --- a/wecom-common/src/main/java/cn/felord/utils/OkHttpUtil.java +++ b/wecom-common/src/main/java/cn/felord/utils/OkHttpUtil.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/utils/StringUtils.java b/wecom-common/src/main/java/cn/felord/utils/StringUtils.java index 69f34191..8ce34b8e 100644 --- a/wecom-common/src/main/java/cn/felord/utils/StringUtils.java +++ b/wecom-common/src/main/java/cn/felord/utils/StringUtils.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.utils; diff --git a/wecom-common/src/main/java/cn/felord/xml/UnixInstantConverter.java b/wecom-common/src/main/java/cn/felord/xml/UnixInstantConverter.java index 475e4e75..32df87c4 100644 --- a/wecom-common/src/main/java/cn/felord/xml/UnixInstantConverter.java +++ b/wecom-common/src/main/java/cn/felord/xml/UnixInstantConverter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml; diff --git a/wecom-common/src/main/java/cn/felord/xml/XStreamXmlReader.java b/wecom-common/src/main/java/cn/felord/xml/XStreamXmlReader.java index 01a46fcd..b61fc18c 100644 --- a/wecom-common/src/main/java/cn/felord/xml/XStreamXmlReader.java +++ b/wecom-common/src/main/java/cn/felord/xml/XStreamXmlReader.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml; diff --git a/wecom-common/src/main/java/cn/felord/xml/XmlReader.java b/wecom-common/src/main/java/cn/felord/xml/XmlReader.java index 73ee1ba3..0690263a 100644 --- a/wecom-common/src/main/java/cn/felord/xml/XmlReader.java +++ b/wecom-common/src/main/java/cn/felord/xml/XmlReader.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml; diff --git a/wecom-objects/pom.xml b/wecom-objects/pom.xml index 6ccdce23..480cc8d6 100644 --- a/wecom-objects/pom.xml +++ b/wecom-objects/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/wecom-objects/src/main/java/cn/felord/AgentDetails.java b/wecom-objects/src/main/java/cn/felord/AgentDetails.java index dc5f28f2..96410900 100644 --- a/wecom-objects/src/main/java/cn/felord/AgentDetails.java +++ b/wecom-objects/src/main/java/cn/felord/AgentDetails.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord; diff --git a/wecom-objects/src/main/java/cn/felord/DefaultAgent.java b/wecom-objects/src/main/java/cn/felord/DefaultAgent.java index 2b2579e1..047fc63d 100644 --- a/wecom-objects/src/main/java/cn/felord/DefaultAgent.java +++ b/wecom-objects/src/main/java/cn/felord/DefaultAgent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord; diff --git a/wecom-objects/src/main/java/cn/felord/DownStreamDetails.java b/wecom-objects/src/main/java/cn/felord/DownStreamDetails.java index d5716614..3c3c4ff9 100644 --- a/wecom-objects/src/main/java/cn/felord/DownStreamDetails.java +++ b/wecom-objects/src/main/java/cn/felord/DownStreamDetails.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord; diff --git a/wecom-objects/src/main/java/cn/felord/SuiteDetail.java b/wecom-objects/src/main/java/cn/felord/SuiteDetail.java index 7a26a172..c0b00067 100644 --- a/wecom-objects/src/main/java/cn/felord/SuiteDetail.java +++ b/wecom-objects/src/main/java/cn/felord/SuiteDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord; diff --git a/wecom-objects/src/main/java/cn/felord/WeComAgentTicketCacheable.java b/wecom-objects/src/main/java/cn/felord/WeComAgentTicketCacheable.java index e4a22643..fcf3d18e 100644 --- a/wecom-objects/src/main/java/cn/felord/WeComAgentTicketCacheable.java +++ b/wecom-objects/src/main/java/cn/felord/WeComAgentTicketCacheable.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord; diff --git a/wecom-objects/src/main/java/cn/felord/WeComCacheable.java b/wecom-objects/src/main/java/cn/felord/WeComCacheable.java index 9363f1fd..e3c6eac1 100644 --- a/wecom-objects/src/main/java/cn/felord/WeComCacheable.java +++ b/wecom-objects/src/main/java/cn/felord/WeComCacheable.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord; diff --git a/wecom-objects/src/main/java/cn/felord/WeComException.java b/wecom-objects/src/main/java/cn/felord/WeComException.java index 35d29ed4..8b9925df 100644 --- a/wecom-objects/src/main/java/cn/felord/WeComException.java +++ b/wecom-objects/src/main/java/cn/felord/WeComException.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord; diff --git a/wecom-objects/src/main/java/cn/felord/WeComTokenCacheable.java b/wecom-objects/src/main/java/cn/felord/WeComTokenCacheable.java index 3cc282d4..7955d21e 100644 --- a/wecom-objects/src/main/java/cn/felord/WeComTokenCacheable.java +++ b/wecom-objects/src/main/java/cn/felord/WeComTokenCacheable.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord; diff --git a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackCrypto.java b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackCrypto.java index 2942840d..294db490 100644 --- a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackCrypto.java +++ b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackCrypto.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callbacks; @@ -252,4 +252,4 @@ public CallbackDecrypted doDecryptMsg(CallbackSettings callbackSettings, String } return this.decrypt(callbackSettings, msgSignature, timeStamp, nonce, encrypt); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackCryptoBuilder.java b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackCryptoBuilder.java index 15de7394..b1cf1185 100644 --- a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackCryptoBuilder.java +++ b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackCryptoBuilder.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callbacks; diff --git a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackEventBody.java b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackEventBody.java index 47cb6821..d170ccc4 100644 --- a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackEventBody.java +++ b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackEventBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callbacks; diff --git a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackSettingsService.java b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackSettingsService.java index 0504e8a7..14fa24d5 100644 --- a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackSettingsService.java +++ b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackSettingsService.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callbacks; diff --git a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackXmlBody.java b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackXmlBody.java index 8715d6a0..d4b5cdc2 100644 --- a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackXmlBody.java +++ b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackXmlBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callbacks; diff --git a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackXmlResponse.java b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackXmlResponse.java index 19d74455..219cf9c1 100644 --- a/wecom-objects/src/main/java/cn/felord/callbacks/CallbackXmlResponse.java +++ b/wecom-objects/src/main/java/cn/felord/callbacks/CallbackXmlResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.callbacks; diff --git a/wecom-objects/src/main/java/cn/felord/domain/CursorWeComResponse.java b/wecom-objects/src/main/java/cn/felord/domain/CursorWeComResponse.java index 599e5107..ac6e24a0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/CursorWeComResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/CursorWeComResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain; diff --git a/wecom-objects/src/main/java/cn/felord/domain/GenericResponse.java b/wecom-objects/src/main/java/cn/felord/domain/GenericResponse.java index 312f4ab9..a8a7bef6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/GenericResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/GenericResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain; diff --git a/wecom-objects/src/main/java/cn/felord/domain/WeComResponse.java b/wecom-objects/src/main/java/cn/felord/domain/WeComResponse.java index 8d6bbc8d..b9d14aee 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/WeComResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/WeComResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/AgentDetailsResponse.java b/wecom-objects/src/main/java/cn/felord/domain/agent/AgentDetailsResponse.java index ace8bc58..ed1e520a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/AgentDetailsResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/AgentDetailsResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/AgentMenuBtn.java b/wecom-objects/src/main/java/cn/felord/domain/agent/AgentMenuBtn.java index 6b83e8cd..b2edfb7e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/AgentMenuBtn.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/AgentMenuBtn.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/AgentMenuBtns.java b/wecom-objects/src/main/java/cn/felord/domain/agent/AgentMenuBtns.java index 88fac65a..b4bd0d97 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/AgentMenuBtns.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/AgentMenuBtns.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/AgentSettingRequest.java b/wecom-objects/src/main/java/cn/felord/domain/agent/AgentSettingRequest.java index 3e95c2b4..1390a361 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/AgentSettingRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/AgentSettingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/AllowParties.java b/wecom-objects/src/main/java/cn/felord/domain/agent/AllowParties.java index 60ffbfc8..2833c709 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/AllowParties.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/AllowParties.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/AllowTags.java b/wecom-objects/src/main/java/cn/felord/domain/agent/AllowTags.java index 1dd06ec6..e4ac5961 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/AllowTags.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/AllowTags.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/AllowUsers.java b/wecom-objects/src/main/java/cn/felord/domain/agent/AllowUsers.java index 5a314896..2d663b5c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/AllowUsers.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/AllowUsers.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/Image.java b/wecom-objects/src/main/java/cn/felord/domain/agent/Image.java index 24bf2ca7..703aa43e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/Image.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/Image.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; @@ -79,4 +79,4 @@ public Image jumpUrl(String jumpUrl) { this.jumpUrl = jumpUrl; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/ImageWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/ImageWorkbenchTemplate.java index 032055cd..eaca0c2a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/ImageWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/ImageWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/Item.java b/wecom-objects/src/main/java/cn/felord/domain/agent/Item.java index e267dd97..d9537aeb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/Item.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/Item.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; @@ -77,4 +77,4 @@ public Item jumpUrl(String jumpUrl) { this.jumpUrl = jumpUrl; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/Items.java b/wecom-objects/src/main/java/cn/felord/domain/agent/Items.java index b73784bb..3974f7fa 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/Items.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/Items.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/KData.java b/wecom-objects/src/main/java/cn/felord/domain/agent/KData.java index 26458351..c84e95d1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/KData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/KData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; @@ -62,4 +62,4 @@ public KData key(String key) { this.key = key; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/KeyData.java b/wecom-objects/src/main/java/cn/felord/domain/agent/KeyData.java index 7e65f2ee..fd4ba335 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/KeyData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/KeyData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/KeyDataWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/KeyDataWorkbenchTemplate.java index e0d22380..0198f148 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/KeyDataWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/KeyDataWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/ListWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/ListWorkbenchTemplate.java index 204228a6..2831a298 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/ListWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/ListWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/SubAgentMenuBtn.java b/wecom-objects/src/main/java/cn/felord/domain/agent/SubAgentMenuBtn.java index 4c373230..bb9b54c7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/SubAgentMenuBtn.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/SubAgentMenuBtn.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/UserImageWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/UserImageWorkbenchTemplate.java index e994237e..7eb31e8b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/UserImageWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/UserImageWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/UserKeyDataWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/UserKeyDataWorkbenchTemplate.java index 559ab4f3..137d3b8d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/UserKeyDataWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/UserKeyDataWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/UserListWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/UserListWorkbenchTemplate.java index 630ccfa5..0b103a0b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/UserListWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/UserListWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/UserWebviewWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/UserWebviewWorkbenchTemplate.java index 6d936672..e95cb5b0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/UserWebviewWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/UserWebviewWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/UserWorkBenchSetting.java b/wecom-objects/src/main/java/cn/felord/domain/agent/UserWorkBenchSetting.java index ef0424d8..1adb8aad 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/UserWorkBenchSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/UserWorkBenchSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/UserWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/UserWorkbenchTemplate.java index a269369c..2c6497d5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/UserWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/UserWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/Webview.java b/wecom-objects/src/main/java/cn/felord/domain/agent/Webview.java index 405dcb52..76694c29 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/Webview.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/Webview.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; @@ -32,4 +32,4 @@ public class Webview implements WorkBenchBody { private Boolean enableWebviewClick; private String url; private WebViewHeight height; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/WebviewWorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/WebviewWorkbenchTemplate.java index 9fc13a73..4a31d33d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/WebviewWorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/WebviewWorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/WorkBenchBody.java b/wecom-objects/src/main/java/cn/felord/domain/agent/WorkBenchBody.java index a56057df..b1c61131 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/WorkBenchBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/WorkBenchBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/WorkBenchSetting.java b/wecom-objects/src/main/java/cn/felord/domain/agent/WorkBenchSetting.java index 414e2d4e..0c0a7611 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/WorkBenchSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/WorkBenchSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/WorkbenchDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/agent/WorkbenchDetailResponse.java index 24fe436c..b09d4e54 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/WorkbenchDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/WorkbenchDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/agent/WorkbenchTemplate.java b/wecom-objects/src/main/java/cn/felord/domain/agent/WorkbenchTemplate.java index 3e95e192..cbe1ba6f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/agent/WorkbenchTemplate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/agent/WorkbenchTemplate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.agent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/AbstractApprovalApplyRequest.java b/wecom-objects/src/main/java/cn/felord/domain/approval/AbstractApprovalApplyRequest.java index ed3f3bd6..77c83fda 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/AbstractApprovalApplyRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/AbstractApprovalApplyRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.approval; import cn.felord.WeComException; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApplyContentData.java index 8d8834bf..8be251b5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApplyData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApplyData.java index fb6ad141..bc0178ac 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApplyData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApplyData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalApplyRequest.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalApplyRequest.java index 7ffa8aca..3d91ce50 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalApplyRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalApplyRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalComment.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalComment.java index 297ced31..249141a2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalComment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalComment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalContentData.java index 128bd3f1..ccc1d4fe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalDetail.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalDetail.java index 506af221..1362e1c5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNode.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNode.java index e0571fda..a42fa705 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNode.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNode.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodeItem.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodeItem.java index 5f25967f..f4a04e0e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodeItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodeItem.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodeItems.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodeItems.java index ba44e1a0..03258f75 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodeItems.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodeItems.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodes.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodes.java index 51fe3f6c..e0d183d7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodes.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalNodes.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalProcess.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalProcess.java index b08dae5b..070d57a6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalProcess.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalProcess.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.approval; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalSpNo.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalSpNo.java index e9831cca..e90633dd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalSpNo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalSpNo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTempAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTempAddRequest.java index 0637df28..f722e953 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTempAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTempAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTempUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTempUpdateRequest.java index 3ba9497c..3c416702 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTempUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTempUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalThirdNo.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalThirdNo.java index 58ef8533..6e2fa5b2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalThirdNo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalThirdNo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTitle.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTitle.java index c21a169b..fee78ef7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTitle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTitle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTmpDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTmpDetailResponse.java index e6402470..0494c11b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTmpDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ApprovalTmpDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/Approver.java b/wecom-objects/src/main/java/cn/felord/domain/approval/Approver.java index d569983c..51a9e369 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/Approver.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/Approver.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceApplyContentData.java index d2c6416c..5861bc38 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceConfig.java index bdc84b4e..e1fd3ab4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceValue.java index 10b7a248..b4f20442 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/AttendanceValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/BankAccountApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/BankAccountApplyContentData.java index b4697883..c0d3b987 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/BankAccountApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/BankAccountApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/BankAccountValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/BankAccountValue.java index 37c8ca2d..71869374 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/BankAccountValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/BankAccountValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/BankInfo.java b/wecom-objects/src/main/java/cn/felord/domain/approval/BankInfo.java index 76139b99..f424591a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/BankInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/BankInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ContactApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ContactApplyContentData.java index e5a06961..27e5e3a2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ContactApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ContactApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ContactConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ContactConfig.java index 1174b4d8..da38b217 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ContactConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ContactConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ContactValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ContactValue.java index c14dc8b9..dad13b99 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ContactValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ContactValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ContentDataValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ContentDataValue.java index 1073a276..ad65ae7e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ContentDataValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ContentDataValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ControlConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ControlConfig.java index e8dfb067..22bd7656 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ControlConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ControlConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/CtrlOption.java b/wecom-objects/src/main/java/cn/felord/domain/approval/CtrlOption.java index e4b876b3..152e54e2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/CtrlOption.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/CtrlOption.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/CtrlProperty.java b/wecom-objects/src/main/java/cn/felord/domain/approval/CtrlProperty.java index 81e45de5..fef5086d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/CtrlProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/CtrlProperty.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DateApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DateApplyContentData.java index 509c28a2..05a28445 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DateApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DateApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DateConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DateConfig.java index ba64134f..d7faace4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DateConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DateConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRange.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRange.java index 60cc19a9..aece79b7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeApplyContentData.java index f59a4d5e..07601cfc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeConfig.java index e69d5df5..a4d0d84c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeValue.java index 5340e4fb..6b0502ff 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeWrapper.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeWrapper.java index 5c8c5399..2a1248b5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeWrapper.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DateRangeWrapper.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DateValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DateValue.java index 38bf4854..fcee3b9a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DateValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DateValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/DayItem.java b/wecom-objects/src/main/java/cn/felord/domain/approval/DayItem.java index 5a1c9b25..89629cc3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/DayItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/DayItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/EmptyConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/EmptyConfig.java index e33b8b33..cf76d634 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/EmptyConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/EmptyConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ExternalOption.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ExternalOption.java index 88185753..1767c690 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ExternalOption.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ExternalOption.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/FileApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/FileApplyContentData.java index cbe6154d..534e7b40 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/FileApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/FileApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/FileConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/FileConfig.java index 6e100eb9..c35f8855 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/FileConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/FileConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/FileValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/FileValue.java index 876e5adb..4e510f22 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/FileValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/FileValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaApplyContentData.java index fdb82668..9dafe458 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaConfig.java index f13ecb19..25f0e343 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaValue.java index 699c1957..61c1b237 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/FormulaValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/LinkSubText.java b/wecom-objects/src/main/java/cn/felord/domain/approval/LinkSubText.java index decc30dd..7eb32169 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/LinkSubText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/LinkSubText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/LinkTipContent.java b/wecom-objects/src/main/java/cn/felord/domain/approval/LinkTipContent.java index 17f57e52..154a67d1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/LinkTipContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/LinkTipContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/LinkTipSubText.java b/wecom-objects/src/main/java/cn/felord/domain/approval/LinkTipSubText.java index e01ef4da..44a8defd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/LinkTipSubText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/LinkTipSubText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ListContentDataValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ListContentDataValue.java index c8b16ae5..523a6b66 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ListContentDataValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ListContentDataValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/LocationApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/LocationApplyContentData.java index 6527089f..b4521b63 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/LocationApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/LocationApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/LocationConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/LocationConfig.java index f22ddd2d..85c69793 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/LocationConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/LocationConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/LocationValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/LocationValue.java index 47d811c9..bd4dbc85 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/LocationValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/LocationValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/MoneyApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/MoneyApplyContentData.java index fabc2f72..3a09c1ef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/MoneyApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/MoneyApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/MoneyValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/MoneyValue.java index 721191f2..daac3b5c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/MoneyValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/MoneyValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/NotifyNode.java b/wecom-objects/src/main/java/cn/felord/domain/approval/NotifyNode.java index 5f8e600c..abc44554 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/NotifyNode.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/NotifyNode.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/NotifyNodes.java b/wecom-objects/src/main/java/cn/felord/domain/approval/NotifyNodes.java index 26545401..9b25b7e0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/NotifyNodes.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/NotifyNodes.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/NumberApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/NumberApplyContentData.java index 84cca4ce..c09b8add 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/NumberApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/NumberApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/NumberValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/NumberValue.java index 283e7a58..63c4452c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/NumberValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/NumberValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/OpRelation.java b/wecom-objects/src/main/java/cn/felord/domain/approval/OpRelation.java index 63183b73..7ec0e110 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/OpRelation.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/OpRelation.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/OpenApprovalData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/OpenApprovalData.java index 093eb07d..2f6b3209 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/OpenApprovalData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/OpenApprovalData.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/PhoneNumberApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/PhoneNumberApplyContentData.java index e00ba3c5..b9bb70de 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/PhoneNumberApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/PhoneNumberApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/PhoneNumberValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/PhoneNumberValue.java index 315825b2..521b0963 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/PhoneNumberValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/PhoneNumberValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessApplyRequest.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessApplyRequest.java index 543ea863..9487963d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessApplyRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessApplyRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessList.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessList.java index 4cefef7b..28c4aa7d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessList.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessList.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.approval; import com.thoughtworks.xstream.annotations.XStreamImplicit; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessNode.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessNode.java index 407239d7..1f58bf54 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessNode.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessNode.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.approval; import cn.felord.enumeration.ApvRel; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessNodeDetail.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessNodeDetail.java index 7e3a59d4..a8396a22 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessNodeDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessNodeDetail.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.approval; import cn.felord.enumeration.ApvRel; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessSubNode.java b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessSubNode.java index 04fe8368..870e8af2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessSubNode.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/ProcessSubNode.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.approval; import cn.felord.domain.callback.CallbackUserId; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/PunchCorrectionApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/PunchCorrectionApplyContentData.java index 0c57f146..c84ff4d1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/PunchCorrectionApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/PunchCorrectionApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/PunchCorrectionValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/PunchCorrectionValue.java index f20cadba..9e5324b4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/PunchCorrectionValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/PunchCorrectionValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalApplyContentData.java index cc081990..a5fac12a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalConfig.java index 5734f1e4..12770715 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalValue.java index e93610de..2e9356b5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/RelatedApprovalValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/Relation.java b/wecom-objects/src/main/java/cn/felord/domain/approval/Relation.java index 2dbb709e..68ad80e6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/Relation.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/Relation.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorApplyContentData.java index 373742e2..e5ef54d4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorConfig.java index 406fd497..d4c5d557 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java index 9890e83a..0a5b5b14 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorKey.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorValue.java index b24cda75..148464a5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SelectorValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SliceInfo.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SliceInfo.java index 727c6286..05bcd81a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SliceInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SliceInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SpNoListRequest.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SpNoListRequest.java index d8f77bba..c22d7ec4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SpNoListRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SpNoListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SpNoListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SpNoListResponse.java index eb94be44..b86b823b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SpNoListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SpNoListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SpRecordDetail.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SpRecordDetail.java index 1031d2f1..7da72594 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SpRecordDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SpRecordDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SpRecordItem.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SpRecordItem.java index 2b58c50f..f84db73e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SpRecordItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SpRecordItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/SubTexts.java b/wecom-objects/src/main/java/cn/felord/domain/approval/SubTexts.java index 5b830fdc..283547e9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/SubTexts.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/SubTexts.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/Summary.java b/wecom-objects/src/main/java/cn/felord/domain/approval/Summary.java index 23ac7d5a..6959d496 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/Summary.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/Summary.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TableApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TableApplyContentData.java index a1adf54d..68090906 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TableApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TableApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TableConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TableConfig.java index dbc27c5a..076080bd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TableConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TableConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TableCtrlProperty.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TableCtrlProperty.java index 2240e914..91cf1f17 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TableCtrlProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TableCtrlProperty.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TableValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TableValue.java index a770dc45..73a087ad 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TableValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TableValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TemplateContent.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TemplateContent.java index 3e00c846..b6f97be0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TemplateContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TemplateContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TextApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TextApplyContentData.java index 6873c182..1e49f16e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TextApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TextApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TextTipContent.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TextTipContent.java index bfb275be..d81c82fe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TextTipContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TextTipContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TextTipSubText.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TextTipSubText.java index 07cdff18..1c3c1426 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TextTipSubText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TextTipSubText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TextValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TextValue.java index e957e97d..b74a66c0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TextValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TextValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TimezoneInfo.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TimezoneInfo.java index a4b2ccf7..0e05ec02 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TimezoneInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TimezoneInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TipSubText.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TipSubText.java index 8daa3bd9..e7fbc909 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TipSubText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TipSubText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/Tips.java b/wecom-objects/src/main/java/cn/felord/domain/approval/Tips.java index bf032b5c..06af3148 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/Tips.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/Tips.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TipsConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TipsConfig.java index 09458d63..7062c1f0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TipsConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TipsConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TipsContent.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TipsContent.java index c1f82df5..0eb6ec2c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TipsContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TipsContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TmpControl.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TmpControl.java index b48f702c..60993491 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TmpControl.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TmpControl.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/TmpControlBuilder.java b/wecom-objects/src/main/java/cn/felord/domain/approval/TmpControlBuilder.java index e2818fdb..7b415ac9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/TmpControlBuilder.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/TmpControlBuilder.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/UserQuotaSettingRequest.java b/wecom-objects/src/main/java/cn/felord/domain/approval/UserQuotaSettingRequest.java index 33454f5a..136bb45f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/UserQuotaSettingRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/UserQuotaSettingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationApplyContentData.java index dab2a73c..90ecf955 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationConfig.java b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationConfig.java index 28b22f76..4fcaff7f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationItem.java b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationItem.java index 7676e258..2acdafc1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationQuota.java b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationQuota.java index 98f156e4..97b54cf8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationQuota.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationQuota.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationValue.java index 6ed30e9f..bb8efc90 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/VacationValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/VacationValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/WedriveFileApplyContentData.java b/wecom-objects/src/main/java/cn/felord/domain/approval/WedriveFileApplyContentData.java index 133c5925..faf82bd8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/WedriveFileApplyContentData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/WedriveFileApplyContentData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/approval/WedriveFileValue.java b/wecom-objects/src/main/java/cn/felord/domain/approval/WedriveFileValue.java index eb9208e1..d95d06e1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/approval/WedriveFileValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/approval/WedriveFileValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.approval; diff --git a/wecom-objects/src/main/java/cn/felord/domain/authentication/AbstractTokenResponse.java b/wecom-objects/src/main/java/cn/felord/domain/authentication/AbstractTokenResponse.java index 440e0d5a..a7472a52 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/authentication/AbstractTokenResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/authentication/AbstractTokenResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.authentication; diff --git a/wecom-objects/src/main/java/cn/felord/domain/authentication/AccessTokenResponse.java b/wecom-objects/src/main/java/cn/felord/domain/authentication/AccessTokenResponse.java index 15a2e027..1715bc7c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/authentication/AccessTokenResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/authentication/AccessTokenResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.authentication; diff --git a/wecom-objects/src/main/java/cn/felord/domain/authentication/JsTicketResponse.java b/wecom-objects/src/main/java/cn/felord/domain/authentication/JsTicketResponse.java index f32dddf1..1d1985b0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/authentication/JsTicketResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/authentication/JsTicketResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.authentication; diff --git a/wecom-objects/src/main/java/cn/felord/domain/authentication/ProviderTokenResponse.java b/wecom-objects/src/main/java/cn/felord/domain/authentication/ProviderTokenResponse.java index aacb6398..61d27fba 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/authentication/ProviderTokenResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/authentication/ProviderTokenResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.authentication; diff --git a/wecom-objects/src/main/java/cn/felord/domain/authentication/SuiteTokenResponse.java b/wecom-objects/src/main/java/cn/felord/domain/authentication/SuiteTokenResponse.java index e54cd3f9..0fa9205d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/authentication/SuiteTokenResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/authentication/SuiteTokenResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.authentication; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/Applyer.java b/wecom-objects/src/main/java/cn/felord/domain/callback/Applyer.java index 987a635f..a7bb8419 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/Applyer.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/Applyer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; @@ -30,4 +30,4 @@ public class Applyer { private String userId; @XStreamAlias("Party") private String party; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/ApprovalInfo.java b/wecom-objects/src/main/java/cn/felord/domain/callback/ApprovalInfo.java index 9539d09d..a76945d9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/ApprovalInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/ApprovalInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/BatchJob.java b/wecom-objects/src/main/java/cn/felord/domain/callback/BatchJob.java index c52dabcf..dd7ee74a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/BatchJob.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/BatchJob.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackArticle.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackArticle.java index d8444165..fcfe8d2a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackArticle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackArticle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackButton.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackButton.java index 374fad7f..c28d9dab 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackButton.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackButton.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackExtAttr.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackExtAttr.java index e228b56a..6ec6eeae 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackExtAttr.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackExtAttr.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackExtAttrItem.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackExtAttrItem.java index e1091327..86caa3de 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackExtAttrItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackExtAttrItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackOptionIds.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackOptionIds.java index 34d93547..4957bfe8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackOptionIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackOptionIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackResource.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackResource.java index cdabf79f..2e71832e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackResource.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackResource.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackSelectedItem.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackSelectedItem.java index 26e7b9a4..579d0271 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackSelectedItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackSelectedItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackSelectedItems.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackSelectedItems.java index 9f718b86..56e0f31f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackSelectedItems.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackSelectedItems.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackUserId.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackUserId.java index 2eb2f3a2..16e28c93 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackUserId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackUserId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackVideo.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackVideo.java index 8c3c3c7b..4bb0e3f1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackVideo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CallbackVideo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/Comments.java b/wecom-objects/src/main/java/cn/felord/domain/callback/Comments.java index fa575aa1..5d913bcc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/Comments.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/Comments.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/CorpIds.java b/wecom-objects/src/main/java/cn/felord/domain/callback/CorpIds.java index 2eee1460..68a791c9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/CorpIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/CorpIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/Details.java b/wecom-objects/src/main/java/cn/felord/domain/callback/Details.java index 97267d92..40c2a799 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/Details.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/Details.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/GroupIds.java b/wecom-objects/src/main/java/cn/felord/domain/callback/GroupIds.java index 117365d8..9a5a452b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/GroupIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/GroupIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/Items.java b/wecom-objects/src/main/java/cn/felord/domain/callback/Items.java index 01d142b7..c677487f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/Items.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/Items.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/OpenApprovalNode.java b/wecom-objects/src/main/java/cn/felord/domain/callback/OpenApprovalNode.java index e1211162..e2961935 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/OpenApprovalNode.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/OpenApprovalNode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/OpenApprovalNodeItem.java b/wecom-objects/src/main/java/cn/felord/domain/callback/OpenApprovalNodeItem.java index 27bfd194..a43f5432 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/OpenApprovalNodeItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/OpenApprovalNodeItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/OpenNotifyNode.java b/wecom-objects/src/main/java/cn/felord/domain/callback/OpenNotifyNode.java index ef9c2cef..3f9828b1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/OpenNotifyNode.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/OpenNotifyNode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/SpRecord.java b/wecom-objects/src/main/java/cn/felord/domain/callback/SpRecord.java index 317d0eaf..433e5a38 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/SpRecord.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/SpRecord.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/Text.java b/wecom-objects/src/main/java/cn/felord/domain/callback/Text.java index 68fb6d48..add34e66 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/Text.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/Text.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/Web.java b/wecom-objects/src/main/java/cn/felord/domain/callback/Web.java index 3196540f..f7966889 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/Web.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/Web.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/BusinessCardKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/BusinessCardKfMessage.java index d2085f70..b8fd6cbb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/BusinessCardKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/BusinessCardKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/CaLink.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/CaLink.java index 376b79ca..9212017b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/CaLink.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/CaLink.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/CaLinkKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/CaLinkKfMessageRequest.java index 22d54017..f6cf2563 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/CaLinkKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/CaLinkKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsKfMessage.java index 1f37fbf4..3f663971 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsMsg.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsMsg.java index 4582165a..eaad40b0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsMsg.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsMsg.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; @@ -38,4 +38,4 @@ public class ChannelsMsg { * 视频号动态标题, 当{@link ChannelsSubType#HISTORY}时,返回动态标题 */ private String title; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopOrder.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopOrder.java index c779d497..9312e327 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopOrder.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopOrder.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopOrderKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopOrderKfMessage.java index c5149037..db3bdd0e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopOrderKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopOrderKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopProduct.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopProduct.java index 31a6e948..9b810aae 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopProduct.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopProduct.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopProductKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopProductKfMessage.java index 8d640857..c0a01c62 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopProductKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ChannelsShopProductKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ClickMsgMenuContent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ClickMsgMenuContent.java index 431eb939..cce045c6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ClickMsgMenuContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ClickMsgMenuContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/EnterSessionKfEvent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/EnterSessionKfEvent.java index cbfa5015..3205d61b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/EnterSessionKfEvent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/EnterSessionKfEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/EventKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/EventKfMessage.java index 565fee4d..7f202a89 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/EventKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/EventKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/FileKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/FileKfMessage.java index 91c6ca32..50ddb4f6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/FileKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/FileKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/FileKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/FileKfMessageRequest.java index 1fe36752..4a440234 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/FileKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/FileKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ImageKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ImageKfMessage.java index 942042b4..beb724e6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ImageKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ImageKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ImageKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ImageKfMessageRequest.java index 986ffab1..f9a25a93 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ImageKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ImageKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KFMemberRange.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KFMemberRange.java index 10534d67..7deaebce 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KFMemberRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KFMemberRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountAddRequest.java index c3927e77..5c10e583 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountInfo.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountInfo.java index 5a1d053c..93a41487 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountLinkRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountLinkRequest.java index 29efff4f..20267fa1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountLinkRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountLinkRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountListRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountListRequest.java index f3a5ab93..b334cd64 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountListRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountUpdateRequest.java index 3a467115..f4fa576b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAccountUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAndExternalUser.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAndExternalUser.java index 601fe7fe..13476e16 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAndExternalUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfAndExternalUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfCorpStatisticDetail.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfCorpStatisticDetail.java index 8c59fe76..384ab29b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfCorpStatisticDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfCorpStatisticDetail.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfCorpStatisticRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfCorpStatisticRequest.java index 0cc0e770..fe76105c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfCorpStatisticRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfCorpStatisticRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEnterSessionContext.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEnterSessionContext.java index fe2eae27..c18b45fe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEnterSessionContext.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEnterSessionContext.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEvent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEvent.java index 01f93cc1..cb7c0517 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEvent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEventMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEventMessageRequest.java index 19ac1452..ad26df2e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEventMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfEventMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUser.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUser.java index 5941bb2e..82504206 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUserRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUserRequest.java index c890e750..4c6d700e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUserRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUserRequest.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUserResponse.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUserResponse.java index 1749d5a8..a6dba324 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUserResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfExternalUserResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfGroupchatRange.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfGroupchatRange.java index a30a7101..56d8212a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfGroupchatRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfGroupchatRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfLink.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfLink.java index 97d6f6f2..d4523a5c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfLink.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfLink.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfLocation.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfLocation.java index 6097c1ff..9b782d20 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfLocation.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfLocation.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessage.java index 35be4727..78d3fd29 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageLink.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageLink.java index 7e15ba3d..4fa3a0e3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageLink.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageLink.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageRequest.java index fdd5957b..575b15b4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageText.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageText.java index c1100c76..a83295a6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMessageText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMiniprogram.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMiniprogram.java index c9ef046f..873d1a8d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMiniprogram.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMiniprogram.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMsgMenu.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMsgMenu.java index b8cc0dd3..36c6b151 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMsgMenu.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfMsgMenu.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicer.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicer.java index 44e7d33b..32d4f378 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicer.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerListResponse.java index 9966a943..465941a7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerRequest.java index 67c27d91..778f6032 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerResponse.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerResponse.java index 475b4b8f..1073d305 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerStatisticDetail.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerStatisticDetail.java index bf4f99e5..ec35512b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerStatisticDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerStatisticDetail.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerStatisticRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerStatisticRequest.java index ff5fc6de..8d0d29da 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerStatisticRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfServicerStatisticRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfSessionResponse.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfSessionResponse.java index ae0c318b..754c04a5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfSessionResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfSessionResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfSessionUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfSessionUpdateRequest.java index 839d8e8b..57e74760 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfSessionUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfSessionUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfStatistic.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfStatistic.java index e9af4faf..bebdb1cb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfStatistic.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfStatistic.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfStatisticResponse.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfStatisticResponse.java index a1189f96..a8671843 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfStatisticResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfStatisticResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfText.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfText.java index 7246a62a..5b294ccc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/KfText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/LinkKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/LinkKfMessage.java index 42300953..848cd6ca 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/LinkKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/LinkKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/LinkKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/LinkKfMessageRequest.java index 35f334f0..f9e70028 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/LinkKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/LinkKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/LocationKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/LocationKfMessage.java index 4840d356..65d7729d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/LocationKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/LocationKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/LocationKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/LocationKfMessageRequest.java index 345b41bd..718e5fa8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/LocationKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/LocationKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfEventMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfEventMessageRequest.java index bdbc1352..8096dbac 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfEventMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfEventMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfMessage.java index 71f7f995..9dd0ff91 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfMessageRequest.java index 5a7a92bf..e10b80f6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuMiniprogram.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuMiniprogram.java index 29b086cc..9c3cac3f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuMiniprogram.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuMiniprogram.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; @@ -47,4 +47,4 @@ public MenuMiniprogram(@JsonProperty("appid") String appid, this.pagepath = pagepath; this.content = content; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuText.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuText.java index 51161046..37e982a1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MenuText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedKfMessage.java index a0cc6dde..77cb13bb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedMsg.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedMsg.java index 25e46ca6..e326d908 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedMsg.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedMsg.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedMsgItem.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedMsgItem.java index 13dad805..1afeadc6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedMsgItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MergedMsgItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; @@ -44,4 +44,4 @@ public class MergedMsgItem { * 消息内容,Json字符串,结构可参考本文档消息类型说明 */ private String msgContent; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramKfMessage.java index 2e53c5a8..efa0a9d6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramKfMessageRequest.java index 14a49a93..c2c85e12 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramMsgMenuContent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramMsgMenuContent.java index dbd8a69b..4f0dd17f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramMsgMenuContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MiniprogramMsgMenuContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MsgMenuContent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MsgMenuContent.java index 922fe8fe..079066ef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MsgMenuContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MsgMenuContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MsgSendFailKfEvent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MsgSendFailKfEvent.java index 36742d42..06a425f5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/MsgSendFailKfEvent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/MsgSendFailKfEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/OpenKfid.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/OpenKfid.java index 6b1b4967..7bb9dcdb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/OpenKfid.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/OpenKfid.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/RejectCustomerMsgKfEvent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/RejectCustomerMsgKfEvent.java index faf799d0..93a1ff32 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/RejectCustomerMsgKfEvent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/RejectCustomerMsgKfEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ServicerRecallMsgKfEvent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ServicerRecallMsgKfEvent.java index 3d4102f8..8c7b6770 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ServicerRecallMsgKfEvent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ServicerRecallMsgKfEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ServicerStatusChangeKfEvent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ServicerStatusChangeKfEvent.java index ab773dc3..b9e24ca7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ServicerStatusChangeKfEvent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ServicerStatusChangeKfEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/SessionStatusChangeKfEvent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/SessionStatusChangeKfEvent.java index 350fd275..c45c9eae 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/SessionStatusChangeKfEvent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/SessionStatusChangeKfEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/SyncMsgRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/SyncMsgRequest.java index 15555ebc..ec476a01 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/SyncMsgRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/SyncMsgRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/SyncMsgResponse.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/SyncMsgResponse.java index 29c21637..5b29b599 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/SyncMsgResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/SyncMsgResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfEventMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfEventMessageRequest.java index 06e183d2..803ff09e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfEventMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfEventMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfMessage.java index 88dae9c2..64ca3186 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfMessageRequest.java index 6d7ee3eb..efcf3bd0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextMsgMenuContent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextMsgMenuContent.java index d99daae2..34ee4aa4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextMsgMenuContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/TextMsgMenuContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/UpgradeServiceConfig.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/UpgradeServiceConfig.java index c9fc7e53..e9949461 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/UpgradeServiceConfig.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/UpgradeServiceConfig.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/UpgradeServiceRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/UpgradeServiceRequest.java index 49f5e15c..1167ade8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/UpgradeServiceRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/UpgradeServiceRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/UserRecallMsgKfEvent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/UserRecallMsgKfEvent.java index 654a404f..85ed7e30 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/UserRecallMsgKfEvent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/UserRecallMsgKfEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/VideoKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/VideoKfMessage.java index daa162ef..ffcc4a41 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/VideoKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/VideoKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/VideoKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/VideoKfMessageRequest.java index 6d4ec16a..ccf4f81b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/VideoKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/VideoKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ViewMsgMenuContent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ViewMsgMenuContent.java index 56fec8ee..4165e7ea 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/ViewMsgMenuContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/ViewMsgMenuContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/VoiceKfMessage.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/VoiceKfMessage.java index a252b0eb..5a7d5419 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/VoiceKfMessage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/VoiceKfMessage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/VoiceKfMessageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/VoiceKfMessageRequest.java index 3266189c..bbd26e59 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/VoiceKfMessageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/VoiceKfMessageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/WechatChannels.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/WechatChannels.java index 8559e723..ba6d778d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/WechatChannels.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/WechatChannels.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/Answer.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/Answer.java index ce84a25d..dbe390a3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/Answer.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/Answer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/AnswerAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/AnswerAttachment.java index 8a03b027..66630475 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/AnswerAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/AnswerAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/GroupsRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/GroupsRequest.java index 557abf7e..e458509c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/GroupsRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/GroupsRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; @@ -25,4 +25,4 @@ public class GroupsRequest { private String cursor; private String groupId; private Integer limit; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/GroupsResponse.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/GroupsResponse.java index 3eec73bc..274f021d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/GroupsResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/GroupsResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; @@ -31,4 +31,4 @@ public class GroupsResponse extends WeComResponse { private String nextCursor; private List groupList; private BoolEnum hasMore; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/ImageAnswerAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/ImageAnswerAttachment.java index 9c5437de..f543375c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/ImageAnswerAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/ImageAnswerAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/ImageIntentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/ImageIntentAttachment.java index 674ecb3a..cd34ef2d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/ImageIntentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/ImageIntentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/Intent.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/Intent.java index 3c2af79f..ba47dc11 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/Intent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/Intent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentAnswer.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentAnswer.java index cf06f605..ff42ba39 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentAnswer.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentAnswer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentAttachment.java index ceb219e6..e45cc781 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentDetail.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentDetail.java index a14f3580..6a67fa06 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentId.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentId.java index a17180c7..260bbff6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentsRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentsRequest.java index 9694b896..842f0d43 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentsRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentsRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; @@ -75,4 +75,4 @@ public IntentsRequest limit(Integer limit) { this.limit = limit; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentsResponse.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentsResponse.java index f3deb1cb..218ab97c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentsResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/IntentsResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; @@ -31,4 +31,4 @@ public class IntentsResponse extends WeComResponse { private String nextCursor; private List intentList; private BoolEnum hasMore; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/KnowledgeGroup.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/KnowledgeGroup.java index a659fd19..aaa9b906 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/KnowledgeGroup.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/KnowledgeGroup.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/KnowledgeGroupDetail.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/KnowledgeGroupDetail.java index 37619812..3841338d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/KnowledgeGroupDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/KnowledgeGroupDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/LinkAnswerAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/LinkAnswerAttachment.java index 6c089a2b..152e9f31 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/LinkAnswerAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/LinkAnswerAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/LinkIntentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/LinkIntentAttachment.java index 51f9e675..bbee67c8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/LinkIntentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/LinkIntentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/MiniprogramAnswerAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/MiniprogramAnswerAttachment.java index e490137d..139fb126 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/MiniprogramAnswerAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/MiniprogramAnswerAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/MiniprogramIntentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/MiniprogramIntentAttachment.java index 0b6c0e30..821fe17e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/MiniprogramIntentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/MiniprogramIntentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/SimilarQuestions.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/SimilarQuestions.java index 356d4e43..aa1f1a7c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/SimilarQuestions.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/SimilarQuestions.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/TextQuestion.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/TextQuestion.java index 231d25a3..d8e7f456 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/TextQuestion.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/TextQuestion.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/UpdateIntentRequest.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/UpdateIntentRequest.java index c141b722..03f061d7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/UpdateIntentRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/UpdateIntentRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/VideoAnswerAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/VideoAnswerAttachment.java index c7fdc530..e5f78af1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/VideoAnswerAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/VideoAnswerAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/VideoIntentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/VideoIntentAttachment.java index 512b139c..2591412e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/VideoIntentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callcenter/knowledge/VideoIntentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.callcenter.knowledge; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/AbstractCheckinData.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/AbstractCheckinData.java index c58c8455..46b6e788 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/AbstractCheckinData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/AbstractCheckinData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/Apply.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/Apply.java index 2b1e8826..f42e8d04 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/Apply.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/Apply.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -20,4 +20,4 @@ @Data public class Apply { private Restinfo restinfo; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/BaseInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/BaseInfo.java index 57e69499..5dc6a8ad 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/BaseInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/BaseInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -55,4 +55,4 @@ public class BaseInfo { * 记录类型:1-固定上下班;2-外出(此报表中不会出现外出打卡数据);3-按班次上下班;4-自由签到;5-加班;7-无规则 */ private CheckinRecordType recordType; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/BukaRemind.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/BukaRemind.java index 39e4b5e1..c2a587de 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/BukaRemind.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/BukaRemind.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -22,4 +22,4 @@ public class BukaRemind { private Integer bukaRemindMonth; private Integer bukaRemindDay; private Boolean openRemind; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinData.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinData.java index 070d1b3d..4c9ae6b9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -40,4 +40,4 @@ public class CheckinData { private Integer lng; private Integer lat; private Instant schCheckinTime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDataRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDataRequest.java index ffcd79bc..f1a5cb96 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDataRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDataRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -30,4 +30,4 @@ public class CheckinDataRequest { private final Instant starttime; private final Instant endtime; private final Set useridlist; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDataResponse.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDataResponse.java index da18483f..fbdda606 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDataResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDataResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -25,4 +25,4 @@ @Data public class CheckinDataResponse extends WeComResponse { private List checkindata; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDate.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDate.java index 4663cdfb..2a0a25cf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -62,4 +62,4 @@ public class CheckinDate { * 弹性 */ private Boolean allowFlex; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDayData.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDayData.java index 5177d0f5..c3262c9b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDayData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDayData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -32,4 +32,4 @@ public class CheckinDayData extends AbstractCheckinData { * 汇总信息 */ private DaySummaryInfo summaryInfo; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDayTime.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDayTime.java index 205591be..a82c6573 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDayTime.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinDayTime.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -32,4 +32,4 @@ public class CheckinDayTime { * 下班时间,为距离0点的时间差 */ private Duration offWorkSec; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinGroup.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinGroup.java index 44af42a2..4494d68e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinGroup.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinGroup.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -162,4 +162,4 @@ public class CheckinGroup { * 自由签到,上班打卡后xx秒可打下班卡 */ private Integer offworkIntervalTime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinMonthData.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinMonthData.java index ea2c24c7..6134d4eb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinMonthData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinMonthData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -33,4 +33,4 @@ public class CheckinMonthData extends AbstractCheckinData { * 汇总信息 */ private MonthSummaryInfo summaryInfo; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinOptionRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinOptionRequest.java index 43535ab6..078673be 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinOptionRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinOptionRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinOptionResponse.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinOptionResponse.java index 238c7cd0..73bc9d25 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinOptionResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinOptionResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -25,4 +25,4 @@ @Data public class CheckinOptionResponse extends WeComResponse { private List group; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinQueryRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinQueryRequest.java index d04cbe2b..5ed90479 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinQueryRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinQueryRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -28,4 +28,4 @@ public class CheckinQueryRequest { private final Instant starttime; private final Instant endtime; private final Set useridlist; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinSchedule.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinSchedule.java index a86906c1..be0fb000 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinSchedule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinSchedule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -33,4 +33,4 @@ public class CheckinSchedule { private Integer maxAllowArriveLate; private Boolean noneedOffwork; private Boolean allowFlex; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinStatisticsResponse.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinStatisticsResponse.java index a7d36359..5592af5f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinStatisticsResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinStatisticsResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinTime.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinTime.java index ce38ee7e..b504281d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinTime.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinTime.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -77,4 +77,4 @@ public class CheckinTime { * 不需要检查下班 */ private Boolean noNeedCheckoff; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinUserSchedule.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinUserSchedule.java index 56f83168..4939eba0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinUserSchedule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinUserSchedule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -24,4 +24,4 @@ public class CheckinUserSchedule { @JsonProperty("scheduleList") private List scheduleList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinUserfaceRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinUserfaceRequest.java index a50f8604..79894000 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinUserfaceRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/CheckinUserfaceRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -21,4 +21,4 @@ public class CheckinUserfaceRequest { private final String userid; private final String userface; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/ClearCheckinRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/ClearCheckinRequest.java index b130658f..435bbfda 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/ClearCheckinRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/ClearCheckinRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -62,4 +62,4 @@ public ClearCheckinRequest(Integer groupid, List clearField, B this.clearField = clearField; this.effectiveNow = effectiveNow; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/DaySummaryInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/DaySummaryInfo.java index bc359354..a16afc7f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/DaySummaryInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/DaySummaryInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -45,4 +45,4 @@ public class DaySummaryInfo { * 当日最晚打卡时间,距离0点 */ private Duration lastestTime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/DelCheckinRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/DelCheckinRequest.java index 0b3efcfb..b11bf8ce 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/DelCheckinRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/DelCheckinRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -52,4 +52,4 @@ public DelCheckinRequest(Integer groupid, Boolean effectiveNow) { this.groupid = groupid; this.effectiveNow = effectiveNow; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinData.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinData.java index 94e0fc7a..8a5409cf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -25,4 +25,4 @@ public class DeviceCheckinData { private String deviceName; private String deviceSn; private String userid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinDataResponse.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinDataResponse.java index 37f12e79..d1503474 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinDataResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinDataResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinQueryRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinQueryRequest.java index 5dfdcdaa..2b2407fe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinQueryRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/DeviceCheckinQueryRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -70,4 +70,4 @@ public static DeviceCheckinQueryRequest filterByCheckinTime(Instant starttime, I public static DeviceCheckinQueryRequest filterByRecordTime(Instant starttime, Instant endtime, Set useridlist) { return new DeviceCheckinQueryRequest(2, starttime, endtime, useridlist); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/ExceptionInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/ExceptionInfo.java index 8f25588a..e543a411 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/ExceptionInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/ExceptionInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -32,4 +32,4 @@ public class ExceptionInfo { * 当日此异常的次数 */ private Integer count; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/HolidayInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/HolidayInfo.java index 9408e27f..7e6beba2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/HolidayInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/HolidayInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -34,4 +34,4 @@ public class HolidayInfo { * 假勤信息摘要-描述信息,目前只有中文一种 */ private SpDescription spDescription; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/Holidayconf.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/Holidayconf.java index e8a21b3c..0f053e50 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/Holidayconf.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/Holidayconf.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -23,4 +23,4 @@ public class Holidayconf { private Apply apply; private Boolean allowOt; private Integer type; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/LateRule.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/LateRule.java index b2cd5fb3..c30391a0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/LateRule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/LateRule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -25,4 +25,4 @@ public class LateRule { private Integer offworkAfterTime; private Integer onworkFlexTime; private Boolean allowOffworkAfterTime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/LocInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/LocInfo.java index 87d211d9..b9628e4c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/LocInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/LocInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -42,4 +42,4 @@ public class LocInfo { * 位置打卡地点纬度,是实际纬度的1000000倍,与腾讯地图一致采用GCJ-02坐标系统标准 */ private Integer lat; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/MonthSummaryInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/MonthSummaryInfo.java index 30800887..4d6c8ead 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/MonthSummaryInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/MonthSummaryInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -46,4 +46,4 @@ public class MonthSummaryInfo { */ private Integer regularDays; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/OtDetail.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/OtDetail.java index bf2db9f9..d562ce09 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/OtDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/OtDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -45,4 +45,4 @@ public class OtDetail { private Integer otNonworkingdaySpandayTime; //todo -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/OtInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/OtInfo.java index f4ccf593..3f5c955f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/OtInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/OtInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -46,4 +46,4 @@ public class OtInfo { * 加班更新时间 */ private Integer uptime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/OtInfoV2.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/OtInfoV2.java index 7a7d613c..37caf992 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/OtInfoV2.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/OtInfoV2.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -37,4 +37,4 @@ public class OtInfoV2 { * 更新时间 */ private Instant updatetime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/Otapplyinfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/Otapplyinfo.java index e881b871..9abdcbbc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/Otapplyinfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/Otapplyinfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -20,4 +20,4 @@ @Data public class Otapplyinfo { private Integer otNonworkingdaySpandayTime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/OverworkInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/OverworkInfo.java index 43e7897b..2ab4ef74 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/OverworkInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/OverworkInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/PunchCorrectionRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/PunchCorrectionRequest.java index 123ca1d8..6597bce4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/PunchCorrectionRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/PunchCorrectionRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -72,4 +72,4 @@ public PunchCorrectionRequest(String userid, Instant scheduleDateTime, Instant c this.scheduleCheckinTime = scheduleCheckinTime; this.remark = remark; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/Range.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/Range.java index 2c06d5c0..efe13bb4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/Range.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/Range.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -33,4 +33,4 @@ public class Range { * 打卡人员中,标签节点的标签id */ private List userid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/Reporterinfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/Reporterinfo.java index a163cd09..0d4152de 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/Reporterinfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/Reporterinfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -25,4 +25,4 @@ public class Reporterinfo { private List reporters; private Instant updatetime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/Restdayconf.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/Restdayconf.java index b3227361..2f0944fa 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/Restdayconf.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/Restdayconf.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -23,4 +23,4 @@ public class Restdayconf { private Apply apply; private Boolean allowOt; private Integer type; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/Restinfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/Restinfo.java index 542dda51..17f67ff4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/Restinfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/Restinfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -23,4 +23,4 @@ public class Restinfo { private List fixTimeRuleList; private Integer type; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/RuleInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/RuleInfo.java index e0392d7a..c5b35560 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/RuleInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/RuleInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -41,4 +41,4 @@ public class RuleInfo { * (日报)当日打卡时间,仅固定上下班规则有值,显示在打卡日报-班次列 */ private List checkintime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleInfo.java index fd523e01..5656fcbf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -37,4 +37,4 @@ public class ScheduleInfo { * 班次名称 */ private String scheduleName; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleItem.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleItem.java index 04185851..447294ba 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -22,4 +22,4 @@ public class ScheduleItem { private final String userid; private final Integer day; private final Integer scheduleId; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleListResponse.java index 57243790..2c6d17be 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/ScheduleListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -29,4 +29,4 @@ public class ScheduleListResponse extends WeComResponse { * 排班表信息 */ private List scheduleList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpDescription.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpDescription.java index 272bd6b0..18c696ec 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpDescription.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpDescription.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -23,4 +23,4 @@ @Data public class SpDescription { private List data; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpItem.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpItem.java index 41ea02bc..c521d583 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -50,4 +50,4 @@ public class SpItem { * 类型:1-请假;2-补卡;3-出差;4-外出;100-外勤 */ private CheckinSpType type; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpOtInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpOtInfo.java index e858a5db..7fc297d2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpOtInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpOtInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpTitle.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpTitle.java index b74eda1c..c6f42089 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpTitle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpTitle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -23,4 +23,4 @@ @Data public class SpTitle { private List data; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpeOffDay.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpeOffDay.java index 75cf29f6..c7df3952 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpeOffDay.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpeOffDay.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpeWorkday.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpeWorkday.java index cfd2d50f..7e7273c6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/SpeWorkday.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/SpeWorkday.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeRule.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeRule.java index 1fceccab..42c655c5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeRule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeRule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -21,4 +21,4 @@ public class TimeRule { private Integer offworkAfterTime; private Integer onworkFlexTime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeSection.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeSection.java index a05199c7..afb005c6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeSection.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeSection.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -35,4 +35,4 @@ public class TimeSection { private Boolean noNeedCheckoff; private Boolean offWorkLeave; private Boolean onWorkBack; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeSectionInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeSectionInfo.java index d3abfc25..1f1f5d65 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeSectionInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/TimeSectionInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -45,4 +45,4 @@ public class TimeSectionInfo { * 下班提醒时间。距当天00:00的秒数 */ private Duration remindOffWorkSec; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinGroup.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinGroup.java index 3a6abea9..83a51913 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinGroup.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinGroup.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinOptionRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinOptionRequest.java index 94f434da..f8607625 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinOptionRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinOptionRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinOptionResponse.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinOptionResponse.java index 17a49d8f..44d267e0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinOptionResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserCheckinOptionResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -25,4 +25,4 @@ @Data public class UserCheckinOptionResponse extends WeComResponse { private List info; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserSchedule.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserSchedule.java index 8865715e..bfef4201 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserSchedule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserSchedule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserScheduleRequest.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserScheduleRequest.java index bbba5a94..d3329f1b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserScheduleRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserScheduleRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -25,4 +25,4 @@ public class UserScheduleRequest { private final Integer groupid; private final YearMonth yearmonth; private final List items; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserSchedules.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserSchedules.java index 1ef815c2..3196b641 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/UserSchedules.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/UserSchedules.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -45,4 +45,4 @@ public class UserSchedules { * 个人排班信息 */ private CheckinUserSchedule schedule; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/WifimacInfo.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/WifimacInfo.java index c8921a70..5ef492fc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/WifimacInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/WifimacInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; diff --git a/wecom-objects/src/main/java/cn/felord/domain/checkin/Workdayconf.java b/wecom-objects/src/main/java/cn/felord/domain/checkin/Workdayconf.java index 53605dd8..3bc17cd5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/checkin/Workdayconf.java +++ b/wecom-objects/src/main/java/cn/felord/domain/checkin/Workdayconf.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.checkin; @@ -23,4 +23,4 @@ public class Workdayconf { private Apply apply; private Boolean allowOt; private Integer type; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/Code.java b/wecom-objects/src/main/java/cn/felord/domain/common/Code.java index c4231150..3f0cca16 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/Code.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/Code.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/CursorPage.java b/wecom-objects/src/main/java/cn/felord/domain/common/CursorPage.java index 24fe4364..9e0bd5fc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/CursorPage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/CursorPage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/DepartmentId.java b/wecom-objects/src/main/java/cn/felord/domain/common/DepartmentId.java index 7ef6f4b7..48573f65 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/DepartmentId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/DepartmentId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/DeptUserMap.java b/wecom-objects/src/main/java/cn/felord/domain/common/DeptUserMap.java index 9637410a..93d669da 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/DeptUserMap.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/DeptUserMap.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/FileInfo.java b/wecom-objects/src/main/java/cn/felord/domain/common/FileInfo.java index 3dfac33d..1a914905 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/FileInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/FileInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/FormId.java b/wecom-objects/src/main/java/cn/felord/domain/common/FormId.java index d60d3e54..dc936541 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/FormId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/FormId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/GroupId.java b/wecom-objects/src/main/java/cn/felord/domain/common/GroupId.java index 14560140..1b590a26 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/GroupId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/GroupId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; @@ -50,4 +50,4 @@ public GroupId(@JsonProperty("group_id") String groupId) { public static GroupId of(String groupId) { return new GroupId(groupId); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/JobId.java b/wecom-objects/src/main/java/cn/felord/domain/common/JobId.java index 612e3184..a96151bb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/JobId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/JobId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/KV.java b/wecom-objects/src/main/java/cn/felord/domain/common/KV.java index 88048dca..9e4fe377 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/KV.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/KV.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/MediaId.java b/wecom-objects/src/main/java/cn/felord/domain/common/MediaId.java index b8aa1381..f5f03723 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/MediaId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/MediaId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/Miniprogram.java b/wecom-objects/src/main/java/cn/felord/domain/common/Miniprogram.java index 59eeca24..f9ec4b31 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/Miniprogram.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/Miniprogram.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; @@ -47,4 +47,4 @@ public Miniprogram(@JsonProperty("appid") String appid, this.pagepath = pagepath; this.title = title; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/MomentId.java b/wecom-objects/src/main/java/cn/felord/domain/common/MomentId.java index cee887c9..655ef703 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/MomentId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/MomentId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/MsgId.java b/wecom-objects/src/main/java/cn/felord/domain/common/MsgId.java index c34afd68..7eeaaa3e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/MsgId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/MsgId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/Name.java b/wecom-objects/src/main/java/cn/felord/domain/common/Name.java index 68bcaa70..4f966474 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/Name.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/Name.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/OpenId.java b/wecom-objects/src/main/java/cn/felord/domain/common/OpenId.java index dfcf7021..eba2e142 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/OpenId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/OpenId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/PageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/common/PageRequest.java index 37690279..e01d32e1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/PageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/PageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/PlainText.java b/wecom-objects/src/main/java/cn/felord/domain/common/PlainText.java index 7a3bbc69..dc9d2184 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/PlainText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/PlainText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/ProductId.java b/wecom-objects/src/main/java/cn/felord/domain/common/ProductId.java index 983efced..4532e269 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/ProductId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/ProductId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/StrategyId.java b/wecom-objects/src/main/java/cn/felord/domain/common/StrategyId.java index a1d46968..fae67fae 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/StrategyId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/StrategyId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/TemplateId.java b/wecom-objects/src/main/java/cn/felord/domain/common/TemplateId.java index d2da588e..75b9be10 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/TemplateId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/TemplateId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/UserId.java b/wecom-objects/src/main/java/cn/felord/domain/common/UserId.java index b2210003..44583006 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/UserId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/UserId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/UserMoment.java b/wecom-objects/src/main/java/cn/felord/domain/common/UserMoment.java index 8112cc14..cd730399 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/UserMoment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/UserMoment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; diff --git a/wecom-objects/src/main/java/cn/felord/domain/common/Value.java b/wecom-objects/src/main/java/cn/felord/domain/common/Value.java index 87880f07..69dad76c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/common/Value.java +++ b/wecom-objects/src/main/java/cn/felord/domain/common/Value.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.common; @@ -49,4 +49,4 @@ public Value(@JsonProperty("value") String value) { public static Value of(String value) { return new Value(value); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchPartyRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchPartyRequest.java index 20c7146f..459d1f71 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchPartyRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchPartyRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.async; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchResultResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchResultResponse.java index 1f185540..14065f3b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchResultResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchResultResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.async; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchUserRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchUserRequest.java index 94daa706..a3bee8b7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchUserRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/BatchUserRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.async; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/Callback.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/Callback.java index ea1dd363..f99b1982 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/Callback.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/Callback.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.async; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/Result.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/Result.java index e5da4a09..44b2ef0b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/Result.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/async/Result.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.async; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/department/DeptInfo.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/department/DeptInfo.java index 5527885d..9743f0a6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/department/DeptInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/department/DeptInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.department; @@ -30,4 +30,4 @@ public class DeptInfo { private String nameEn; private List departmentLeader; private Long order; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/department/DeptSimpleInfo.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/department/DeptSimpleInfo.java index 5aa8d8b4..6e7b3902 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/department/DeptSimpleInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/department/DeptSimpleInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.department; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/CorpSimpleUserInfo.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/CorpSimpleUserInfo.java index 1f500db8..5bb6067b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/CorpSimpleUserInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/CorpSimpleUserInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.linkedcorp; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/CorpUserInfo.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/CorpUserInfo.java index 4503b6be..3d4a134c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/CorpUserInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/CorpUserInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.linkedcorp; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/PermListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/PermListResponse.java index d6c437e8..64c18d11 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/PermListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/linkedcorp/PermListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.linkedcorp; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/Tag.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/Tag.java index 98839474..eb5de6ba 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/Tag.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/Tag.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.tag; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUser.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUser.java index 64e4d860..7fb045ec 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.tag; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserActionResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserActionResponse.java index 2e84225b..d51c6981 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserActionResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserActionResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.tag; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserRequest.java index 6971d64a..38602ee1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.tag; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserResponse.java index 71328127..f41fcbca 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/tag/TagUserResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.tag; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/AttrsItem.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/AttrsItem.java index 78493107..e9c1a1de 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/AttrsItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/AttrsItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; @@ -27,4 +27,4 @@ public class AttrsItem { private String name; private Web web; private Value text; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/BatchInviteRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/BatchInviteRequest.java index f5ad6fa1..bceec048 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/BatchInviteRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/BatchInviteRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/BatchInviteResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/BatchInviteResponse.java index 3d753445..d75d9058 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/BatchInviteResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/BatchInviteResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ConvertTmpUserRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ConvertTmpUserRequest.java index 8643d223..50a978a0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ConvertTmpUserRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ConvertTmpUserRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/DeptUser.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/DeptUser.java index ed79a574..64add02e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/DeptUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/DeptUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/DeptUserListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/DeptUserListResponse.java index f8178606..b8ee54f7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/DeptUserListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/DeptUserListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/EmailUserRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/EmailUserRequest.java index ff8b1167..68fbf8d5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/EmailUserRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/EmailUserRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Extattr.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Extattr.java index ef4c92f2..58c0e95d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Extattr.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Extattr.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; @@ -25,4 +25,4 @@ @Data public class Extattr { private List attrs; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalAttrItem.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalAttrItem.java index 1447b961..0820049c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalAttrItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalAttrItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; @@ -29,4 +29,4 @@ public class ExternalAttrItem { private Miniprogram miniprogram; private Web web; private Value text; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalProfile.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalProfile.java index 74a9abe6..a9952e95 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalProfile.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalProfile.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; @@ -33,4 +33,4 @@ public static class WechatChannels { private String nickName; private Integer status; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalUserListDetailRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalUserListDetailRequest.java index 88bc4ea5..705d2b5a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalUserListDetailRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/ExternalUserListDetailRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Mobile.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Mobile.java index e5f6ec00..b625a8dc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Mobile.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Mobile.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/SimpleUser.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/SimpleUser.java index 765f8b12..b63a8e4d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/SimpleUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/SimpleUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TfaInfoResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TfaInfoResponse.java index f5269d96..22eb61c3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TfaInfoResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TfaInfoResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TfaUser.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TfaUser.java index 1842c796..7e90969f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TfaUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TfaUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TmpUser.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TmpUser.java index 811ea739..eedc87e9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TmpUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/TmpUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserDetail.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserDetail.java index a42bd8af..3f4c5701 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserDetailResponse.java index d3fbf3cb..037ba4ed 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdConvertRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdConvertRequest.java index f76f4f1b..0489c036 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdConvertRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdConvertRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdConvertResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdConvertResponse.java index e171dd9a..98c3f5b3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdConvertResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdConvertResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdPair.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdPair.java index 9328652c..5d2e1b93 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdPair.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIdPair.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIds.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIds.java index a7399e73..cc696d99 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserInfoRequest.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserInfoRequest.java index e848b31b..dc6687cd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserInfoRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserInfoRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserInfoResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserInfoResponse.java index 5b5d21aa..15c78415 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserInfoResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserInfoResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; @@ -50,4 +50,4 @@ public class UserInfoResponse extends WeComResponse { private String address; private String openUserid; private Long mainDepartment; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserSensitiveInfoResponse.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserSensitiveInfoResponse.java index 3a5e39b8..7cf7bfe1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserSensitiveInfoResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserSensitiveInfoResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserTicket.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserTicket.java index 2057f229..02519236 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserTicket.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserTicket.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Web.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Web.java index bb89ad98..d0fb58e0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Web.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/Web.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.contactbook.user; @@ -24,4 +24,4 @@ public class Web { private String title; private String url; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillDetail.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillDetail.java index da392ca0..4f6b7bef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillDetail.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillRequest.java index 065d9b7b..e6a95668 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillResponse.java index 33b197b4..7e5d397c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/BillResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/Commodity.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/Commodity.java index 0da58d71..c73dbaab 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/Commodity.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/Commodity.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/ContactInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/ContactInfo.java index fd6be2ae..18075208 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/ContactInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/ContactInfo.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlow.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlow.java index ad89feec..2a142295 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlow.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlow.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlowRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlowRequest.java index 6fea4671..276fb99d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlowRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlowRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlowResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlowResponse.java index 458407e3..b61d1415 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlowResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/FundFlowResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/GroupName.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/GroupName.java index 4e5ceb78..e75fa64f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/GroupName.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/GroupName.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchDetailResponse.java index 9aafaa37..7284b5b9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchId.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchId.java index eeb5eeb9..cd42250e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchScope.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchScope.java index 1d1c2d5e..6fd709d1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchScope.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchScope.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchScopeRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchScopeRequest.java index fea40e61..2513d895 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchScopeRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MchScopeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MiniprogramInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MiniprogramInfo.java index 776c5a18..36dea87f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MiniprogramInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/MiniprogramInfo.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/OutTradeNo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/OutTradeNo.java index 2a6b4a69..95a67030 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/OutTradeNo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/OutTradeNo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/PaymentId.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/PaymentId.java index 35756e3b..6f22b6ed 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/PaymentId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/PaymentId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/RefundInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/RefundInfo.java index ddb63115..5a479489 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/RefundInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/RefundInfo.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountInfo.java index 1edb3875..2482e914 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountInfo.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountStatusInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountStatusInfo.java index 2f57348a..c09c26db 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountStatusInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountStatusInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; @@ -31,4 +31,4 @@ public class AccountStatusInfo { private List auditDetail; private AccountValidation accountValidation; private String legalValidationUrl; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountValidation.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountValidation.java index b391f3bf..06353554 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountValidation.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AccountValidation.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; @@ -28,4 +28,4 @@ public class AccountValidation { private String deadline; private String accountNo; private String destinationAccountName; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/ApplyStatusResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/ApplyStatusResponse.java index d5478dd4..44eab1f7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/ApplyStatusResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/ApplyStatusResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AuditDetailItem.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AuditDetailItem.java index 545be664..4dfa0cc1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AuditDetailItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/AuditDetailItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; @@ -21,4 +21,4 @@ public class AuditDetailItem { private String rejectReason; private String paramName; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/BankCardSupplement.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/BankCardSupplement.java index bab7a3e2..842c6069 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/BankCardSupplement.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/BankCardSupplement.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/BusinessLicenseInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/BusinessLicenseInfo.java index 40a234c6..1523b5c5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/BusinessLicenseInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/BusinessLicenseInfo.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/ContactInfoWrapper.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/ContactInfoWrapper.java index 342c8ea1..ecf22a4e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/ContactInfoWrapper.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/ContactInfoWrapper.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/FinanceInstitutionInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/FinanceInstitutionInfo.java index 4df544a3..dbd6d8ae 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/FinanceInstitutionInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/FinanceInstitutionInfo.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/IdCardInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/IdCardInfo.java index 62a1d08f..8e1bdedc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/IdCardInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/IdCardInfo.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/MchAccountRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/MchAccountRequest.java index f06820d2..bffd913d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/MchAccountRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/MchAccountRequest.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/MediaIds.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/MediaIds.java index 47701bad..a75cd38f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/MediaIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/MediaIds.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/OutRequestNo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/OutRequestNo.java index d3bfaeec..034da467 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/OutRequestNo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/external/account/OutRequestNo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.external.account; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/AbstractXmlRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/AbstractXmlRequest.java index 71ebacd6..d5dc7f3d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/AbstractXmlRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/AbstractXmlRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/AbstractXmlResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/AbstractXmlResponse.java index 29b202e0..73c41d02 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/AbstractXmlResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/AbstractXmlResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRecordRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRecordRequest.java index bbf1896c..d83d8d80 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRecordRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRecordRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRecordResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRecordResponse.java index 5cdc8bd1..e5c5053e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRecordResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRecordResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRequest.java index 2ac12fc7..bf2754ee 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackResponse.java index a9de6ecf..030e2a8f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/RedPackResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRecordRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRecordRequest.java index 81bf353d..da89820c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRecordRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRecordRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRecordResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRecordResponse.java index e39ac1c7..1a813754 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRecordResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRecordResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRequest.java index bdaf0d30..8ee6c198 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketResponse.java index 1a22bb00..0290be35 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/TransPocketResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/XmlRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/XmlRequest.java index 79cf02d5..0b9905dc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/XmlRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/internal/XmlRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.internal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/Amount.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/Amount.java index badcbdb5..0882baaf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/Amount.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/Amount.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -48,4 +48,4 @@ public Amount(int total, String currency) { public static Amount rmb(int total) { return new Amount(total, "CNY"); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/BillRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/BillRequest.java index 245213b0..527f07ff 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/BillRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/BillRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/BillResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/BillResponse.java index ed59183f..7bab1255 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/BillResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/BillResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -29,4 +29,4 @@ public class BillResponse { private String downloadUrl; private String hashValue; private String hashType; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/GoodsDetailItem.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/GoodsDetailItem.java index 99b56c00..6cfd09e6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/GoodsDetailItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/GoodsDetailItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -77,4 +77,4 @@ public GoodsDetailItem(@JsonProperty("merchant_goods_id") String merchantGoodsId this.goodsName = goodsName; this.wechatpayGoodsId = wechatpayGoodsId; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MchIdAndOutRefundNo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MchIdAndOutRefundNo.java index 19ab7d25..565e9398 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MchIdAndOutRefundNo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MchIdAndOutRefundNo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MchIdAndOutTradeNo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MchIdAndOutTradeNo.java index a41a8b17..aebfe63a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MchIdAndOutTradeNo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MchIdAndOutTradeNo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MiniPayRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MiniPayRequest.java index e4565c29..0e5f4801 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MiniPayRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/MiniPayRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -37,4 +37,4 @@ public class MiniPayRequest { private String scenekey; private PayOrderDetail detail; private SceneInfo sceneInfo; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/OrderAmount.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/OrderAmount.java index bacb4ce4..e692bab1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/OrderAmount.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/OrderAmount.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -40,4 +40,4 @@ public class OrderAmount { * 用户支付币种 */ private String payerCurrency; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PayOrderDetail.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PayOrderDetail.java index ee9d2d1b..20afc822 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PayOrderDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PayOrderDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -28,4 +28,4 @@ public class PayOrderDetail { private String invoiceId; private Integer costPrice; private List goodsDetail; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PayOrderDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PayOrderDetailResponse.java index 8dc65e32..f824e7d8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PayOrderDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PayOrderDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -40,4 +40,4 @@ public class PayOrderDetailResponse { private OrderAmount amount; private SceneInfo sceneInfo; private PromotionDetail promotionDetail; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PaySignRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PaySignRequest.java index 3b76c06d..54431e19 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PaySignRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PaySignRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -58,4 +58,4 @@ public PaySignRequest(String appid, String nonce, String prepayId, Instant times this.prepayId = prepayId; this.timestamp = timestamp; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/Payer.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/Payer.java index b3b9ae72..b39cae0c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/Payer.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/Payer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -38,4 +38,4 @@ public class Payer { public Payer(@JsonProperty("openid") String openid) { this.openid = openid; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PromotionDetail.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PromotionDetail.java index 09e0feaa..ba96ea63 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PromotionDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PromotionDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PromotionGoodsDetail.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PromotionGoodsDetail.java index 01cf6397..baf7dd3c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PromotionGoodsDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/PromotionGoodsDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RAmount.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RAmount.java index a57077ad..263fc1ca 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RAmount.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RAmount.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -27,4 +27,4 @@ public class RAmount { private Integer discountRefund; private String currency; private Integer refund; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundAmount.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundAmount.java index 990e5acf..4922bc40 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundAmount.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundAmount.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -52,4 +52,4 @@ public RefundAmount(int total, String currency, int refund) { public static RefundAmount rmb(int total, int refund) { return new RefundAmount(total, "CNY", refund); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundDetailResponse.java index bc706b74..af13f5b0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -45,4 +45,4 @@ public class RefundDetailResponse extends WeComResponse { private RefundResult status; private RAmount amount; private RefundPromotionDetail promotionDetail; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundPromotionDetail.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundPromotionDetail.java index 7fa240e9..a4493f0b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundPromotionDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundPromotionDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundRequest.java index af854b2e..453d5033 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -30,4 +30,4 @@ public class RefundRequest { private final RefundAmount amount; private String reason; private String fundsAccount; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundResponse.java index c56574d2..3ab831d9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/RefundResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/SceneInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/SceneInfo.java index efdf8311..060a2bb8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/SceneInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/SceneInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -26,4 +26,4 @@ public class SceneInfo { private final String payerClientIp; private StoreInfo storeInfo; private String deviceId; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/StoreInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/StoreInfo.java index 7ac548cc..bf1f8796 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/StoreInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/StoreInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay; @@ -27,4 +27,4 @@ public class StoreInfo { private String name; private String areaCode; private String address; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/callback/RefundCallbackData.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/callback/RefundCallbackData.java index 65896dc6..eb084f9f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/callback/RefundCallbackData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/callback/RefundCallbackData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/callback/TransactionCallbackData.java b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/callback/TransactionCallbackData.java index f891ade2..69fd89b0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/callback/TransactionCallbackData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpay/miniapppay/callback/TransactionCallbackData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpay.miniapppay.callback; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainContact.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainContact.java index bb8899b3..1d76e240 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainContact.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainContact.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -51,4 +51,4 @@ public ChainContact(String corpName, List contactInfoList, String c this.customId = customId; this.groupPath = groupPath; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainContactRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainContactRequest.java index c0d52f08..799b0c82 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainContactRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainContactRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -23,4 +23,4 @@ public class ChainContactRequest { private final String chainId; private final List contactList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorp.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorp.java index 1332698d..74b2e3ee 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorp.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorp.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorpDetailRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorpDetailRequest.java index efec6818..477d6ed3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorpDetailRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorpDetailRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -65,4 +65,4 @@ public static ChainCorpDetailRequest withCorpId(String chainId, String corpid) { public static ChainCorpDetailRequest withPendingCorpId(String chainId, String pendingCorpid) { return new ChainCorpDetailRequest(chainId, null, pendingCorpid); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorpDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorpDetailResponse.java index 89ac048c..92e81f21 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorpDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainCorpDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -35,4 +35,4 @@ public class ChainCorpDetailResponse extends WeComResponse { private Boolean isJoined; private String corpName; private QualificationStatus qualificationStatus; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroup.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroup.java index e4fe7741..4aa6a5b2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroup.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroup.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -29,4 +29,4 @@ public class ChainGroup { private Integer groupid; private Integer parentid; private Long order; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroupInfoRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroupInfoRequest.java index 1bf8b53f..3e31ff32 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroupInfoRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroupInfoRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -85,4 +85,4 @@ public ChainGroupInfoRequest needPending(boolean needPending) { this.needPending = needPending; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroupRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroupRequest.java index ceb6400b..9548327f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroupRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainGroupRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -50,4 +50,4 @@ public ChainGroupRequest(String chainId, int groupid) { this.chainId = chainId; this.groupid = groupid; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainId.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainId.java index 8a888810..f47d08a3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRule.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRule.java index 4aec1c83..29eb140c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -52,4 +52,4 @@ public static ChainRule from(int ruleId, String chainId) { return new ChainRule(ruleId, chainId); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRuleAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRuleAddRequest.java index c8f6d141..9d1d1cf6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRuleAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRuleAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRuleModifyRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRuleModifyRequest.java index eebb388c..ed6a188b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRuleModifyRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ChainRuleModifyRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ContactInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ContactInfo.java index eac12b15..7a509419 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ContactInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ContactInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -55,4 +55,4 @@ public ContactInfo(String name, String mobile, IdentityType identityType, String this.identityType = identityType; this.userCustomId = userCustomId; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpExUser.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpExUser.java index fac6857f..be86f8ed 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpExUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpExUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpExUserRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpExUserRequest.java index 6b81e340..ffc26c72 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpExUserRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpExUserRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpId.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpId.java index abaf14e5..64e9408d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpInUser.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpInUser.java index a26015a0..dbf7edef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpInUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpInUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpInfo.java index 87c77072..acad2ff1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/CorpInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ExPendingIdRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ExPendingIdRequest.java index 461fb3f0..03f5c5e5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ExPendingIdRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ExPendingIdRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -51,4 +51,4 @@ public ExPendingIdRequest chatId(String chatId) { this.chatId = chatId; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/FailedContact.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/FailedContact.java index 681ac17c..8ce647bc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/FailedContact.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/FailedContact.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/FailedCorp.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/FailedCorp.java index 5ae739dc..e376d0e6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/FailedCorp.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/FailedCorp.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/GroupCorp.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/GroupCorp.java index 21d9474a..9114c2c2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/GroupCorp.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/GroupCorp.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -33,4 +33,4 @@ public class GroupCorp { private String pendingCorpid; private String corpName; private String inviteUserid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/GroupCorpsResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/GroupCorpsResponse.java index 8830de3b..e908c0da 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/GroupCorpsResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/GroupCorpsResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/JobResult.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/JobResult.java index 9228be2b..7ccef494 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/JobResult.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/JobResult.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/JobResultResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/JobResultResponse.java index 79662922..210462a5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/JobResultResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/JobResultResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/MemberCorpRange.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/MemberCorpRange.java index f4337bab..708fbf3b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/MemberCorpRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/MemberCorpRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -71,4 +71,4 @@ public static OwnerCorpRange corpIds(List corpids) { public static OwnerCorpRange groupIds(List groupids) { return new OwnerCorpRange(null, groupids); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/MiniprogramSessionResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/MiniprogramSessionResponse.java index bfe832bc..d713ec07 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/MiniprogramSessionResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/MiniprogramSessionResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/OwnerCorpRange.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/OwnerCorpRange.java index 7ad5f70f..2c6e1dd1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/OwnerCorpRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/OwnerCorpRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -77,4 +77,4 @@ public static OwnerCorpRange userIds(List userids) { public static OwnerCorpRange departmentIds(List departmentids) { return new OwnerCorpRange(null, departmentids); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/PendingExUser.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/PendingExUser.java index effc3c59..9452fda4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/PendingExUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/PendingExUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/RuleInfo.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/RuleInfo.java index 702fc45d..5a6a668b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/RuleInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/RuleInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -27,4 +27,4 @@ public class RuleInfo { private OwnerCorpRange ownerCorpRange; private MemberCorpRange memberCorpRange; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ShareInfoRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ShareInfoRequest.java index 89ca73e5..669ee067 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ShareInfoRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ShareInfoRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; @@ -101,4 +101,4 @@ public ShareInfoRequest limit(Integer limit) { this.limit = limit; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ShareInfoResponse.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ShareInfoResponse.java index c13c1817..e4b1e6bf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ShareInfoResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/ShareInfoResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/UnionPendingIdRequest.java b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/UnionPendingIdRequest.java index 0689ff71..0b2f1c74 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/corpgroup/UnionPendingIdRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/corpgroup/UnionPendingIdRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.corpgroup; diff --git a/wecom-objects/src/main/java/cn/felord/domain/dial/Callee.java b/wecom-objects/src/main/java/cn/felord/domain/dial/Callee.java index 91702dc1..6c7ee4fa 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/dial/Callee.java +++ b/wecom-objects/src/main/java/cn/felord/domain/dial/Callee.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.dial; @@ -37,4 +37,4 @@ public class Callee { * 被叫用户的号码,当被叫用户为外部用户时返回 */ private String phone; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/dial/Caller.java b/wecom-objects/src/main/java/cn/felord/domain/dial/Caller.java index 655895a5..c66f194f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/dial/Caller.java +++ b/wecom-objects/src/main/java/cn/felord/domain/dial/Caller.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.dial; @@ -33,4 +33,4 @@ public class Caller { * 主叫用户的userid */ private String userid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/dial/DialRecord.java b/wecom-objects/src/main/java/cn/felord/domain/dial/DialRecord.java index 24621a23..c8a25552 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/dial/DialRecord.java +++ b/wecom-objects/src/main/java/cn/felord/domain/dial/DialRecord.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.dial; @@ -46,4 +46,4 @@ public class DialRecord { * 通话类型 */ private CallType callType; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/dial/DialRecordsRequest.java b/wecom-objects/src/main/java/cn/felord/domain/dial/DialRecordsRequest.java index 0d097db8..a28249f8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/dial/DialRecordsRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/dial/DialRecordsRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.dial; @@ -25,4 +25,4 @@ public class DialRecordsRequest { private Instant endTime; private Long offset; private Integer limit; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLink.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLink.java index 3e407cc6..82f558e1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLink.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLink.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkCreateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkCreateRequest.java index 2c749e9e..002626a2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkCreateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkCreateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkRange.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkRange.java index a4f0e14e..4e25d05e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkUpdateRequest.java index 4c549cf2..af05afb7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionLinkUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionQuota.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionQuota.java index 5f9752e5..8c0125ca 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionQuota.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionQuota.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionQuotaResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionQuotaResponse.java index c8dd991c..570a3750 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionQuotaResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AcquisitionQuotaResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpGroupIds.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpGroupIds.java index 218976ba..e2d10117 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpGroupIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpGroupIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpGroupIdsAndTagIds.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpGroupIdsAndTagIds.java index 0c757a0d..c02cbe02 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpGroupIdsAndTagIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpGroupIdsAndTagIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpTagIds.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpTagIds.java index 63c478f9..ae34d46a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpTagIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpTagIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpTagIterator.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpTagIterator.java index 46d67d0d..8ca1e1c2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpTagIterator.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AgentCorpTagIterator.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AllCorpTag.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AllCorpTag.java index f938d733..8da84eba 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AllCorpTag.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/AllCorpTag.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ApplicableRange.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ApplicableRange.java index 2423a0b9..313943db 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ApplicableRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ApplicableRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/BehaviorData.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/BehaviorData.java index a216cb19..e5ae3775 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/BehaviorData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/BehaviorData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatInterceptRuleAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatInterceptRuleAddRequest.java index 6c2cce30..6f8d968f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatInterceptRuleAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatInterceptRuleAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatInterceptRuleUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatInterceptRuleUpdateRequest.java index b320fa8b..fea8471a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatInterceptRuleUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatInterceptRuleUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatListItem.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatListItem.java index 0d044c53..4bed9a6f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatListItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatListItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatPair.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatPair.java index cdb853de..de027791 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatPair.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ChatPair.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Conclusions.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Conclusions.java index 80288d99..23de511d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Conclusions.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Conclusions.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ConfigId.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ConfigId.java index a4da814b..663972fc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ConfigId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ConfigId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactInfo.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactInfo.java index 03ac96c4..a23c820f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactListRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactListRequest.java index d1970d43..bafa451c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactListRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactListResponse.java index 313df646..86d8af2b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayAddResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayAddResponse.java index 9f27b546..b3ff1bfd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayAddResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayAddResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayBody.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayBody.java index 1bb991f1..1f61becd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayBodyDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayBodyDetail.java index 4e72ae16..99caa232 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayBodyDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayBodyDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayConfigRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayConfigRequest.java index 6a881095..423af821 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayConfigRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContactWayConfigRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContentText.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContentText.java index 7a8acbbf..a34647ba 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContentText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContentText.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContractListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContractListResponse.java index 7c293fa5..522088e4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContractListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ContractListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpGroupIds.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpGroupIds.java index 9c7d8d7f..28db5f64 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpGroupIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpGroupIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTag.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTag.java index bcf1c652..6586e95c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTag.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTag.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagAddRequest.java index ffaaa928..d86ee4b2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagBase.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagBase.java index ea7196e8..933ada2f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagBase.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagBase.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagEditRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagEditRequest.java index d1e2bf04..4e3ae3bc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagEditRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagEditRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagGroup.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagGroup.java index f650b19b..125e188e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagGroup.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagGroup.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagIds.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagIds.java index 64f11259..45752347 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagIterator.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagIterator.java index de56c6f7..f2c7adb0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagIterator.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagIterator.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagOptRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagOptRequest.java index 77aa70a3..24534128 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagOptRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagOptRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagStrategyAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagStrategyAddRequest.java index a2feb317..0b95cac7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagStrategyAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagStrategyAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagStrategyEditRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagStrategyEditRequest.java index b7270e0f..ba403bcf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagStrategyEditRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CorpTagStrategyEditRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerRemarkRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerRemarkRequest.java index b5b2322a..b785a125 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerRemarkRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerRemarkRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyDetail.java index fd6a031e..a32b037f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyDetailResponse.java index f802bc23..7dcbaee3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyPrivilege.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyPrivilege.java index 888a969c..42fe8ae0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyPrivilege.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyPrivilege.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyRequest.java index 164b6469..24a14d29 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/CustomerStrategyRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/DelWelcomeTmpRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/DelWelcomeTmpRequest.java index 579daf2b..79600a81 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/DelWelcomeTmpRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/DelWelcomeTmpRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalContact.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalContact.java index 686f401d..656d1693 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalContact.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalContact.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalContactTag.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalContactTag.java index 2121e40f..e69b8f10 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalContactTag.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalContactTag.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserDetailResponse.java index 3888cd48..27ced26f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserId.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserId.java index 9e0eee2a..5d8108cc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserListDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserListDetailResponse.java index f89e7f1a..9688baef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserListDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExternalUserListDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExtraInterceptRule.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExtraInterceptRule.java index 344a2c80..8c6d822b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExtraInterceptRule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ExtraInterceptRule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FileMsgAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FileMsgAttachment.java index 7673b1d8..586be9ed 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FileMsgAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FileMsgAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FollowInfo.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FollowInfo.java index 541d4078..af73fcbe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FollowInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FollowInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FollowUser.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FollowUser.java index cb2fb4c6..60e44edb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FollowUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/FollowUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatData.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatData.java index 8f3f1faa..5d36de2f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataByDay.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataByDay.java index cbb6e329..2cb978b6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataByDay.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataByDay.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataByOwner.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataByOwner.java index fd6f77f1..f389133d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataByOwner.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataByOwner.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataResponse.java index 0d0ffd18..fa8f3180 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDataResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDayDataRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDayDataRequest.java index bf8a64aa..c6398e83 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDayDataRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDayDataRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDetail.java index d1760666..3aa0edec 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDetailRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDetailRequest.java index 929853ce..2e93f021 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDetailRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatDetailRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatListRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatListRequest.java index 673ab86f..df22c7e0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatListRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatListResponse.java index c52cc572..33dd968a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatMember.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatMember.java index ad688e8a..e94c4a5b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatMember.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatMember.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatOwnerDataRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatOwnerDataRequest.java index ed12db20..5642e2dd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatOwnerDataRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatOwnerDataRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatWayBody.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatWayBody.java index b4f1ed10..e587d5b6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatWayBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatWayBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatWayResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatWayResponse.java index f60e7c07..f89995d5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatWayResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupChatWayResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgDetail.java index 0870ba50..c6b8dff5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgListRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgListRequest.java index 7b40e901..0cf8e5c4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgListRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgListResponse.java index 535a394d..23f2fa8a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResult.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResult.java index 56835a21..6036b021 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResult.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResult.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResultRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResultRequest.java index 85c93859..9cbba32c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResultRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResultRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResultResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResultResponse.java index 48182e68..e48009ff 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResultResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgSendResultResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskDetail.java index bfecec7f..d0f39bfe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskRequest.java index 147fbc1f..7c187825 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskResponse.java index fa2c3da0..80767865 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/GroupMsgTaskResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Image.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Image.java index 1ef7ed9c..3b81a04f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Image.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Image.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageMomentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageMomentAttachment.java index 72cb59e4..ebcfd27e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageMomentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageMomentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageMsgAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageMsgAttachment.java index e8941dba..7801549b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageMsgAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageMsgAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageUrl.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageUrl.java index 3e84eccd..ce619680 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageUrl.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ImageUrl.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InteractionUser.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InteractionUser.java index a56da79d..de4d8d8b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InteractionUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InteractionUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleDetail.java index 2105461b..3e923ead 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleInfo.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleInfo.java index 2aa13559..657848ac 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleRequest.java index ce3b2836..7b48baca 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/InterceptRuleRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Link.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Link.java index e7570493..89dba80f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Link.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/Link.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkCustomer.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkCustomer.java index 539018ce..c20efe12 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkCustomer.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkCustomer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkCustomersResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkCustomersResponse.java index 3423af85..06c48a23 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkCustomersResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkCustomersResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkDetailResponse.java index 43a5c6ee..fd8c30cd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkId.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkId.java index da9e9047..9f78e565 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkMomentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkMomentAttachment.java index e3911171..26f2b92d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkMomentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkMomentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkMsgAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkMsgAttachment.java index dbb749ef..b2b463cb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkMsgAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkMsgAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkPageRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkPageRequest.java index 63eff23c..c6c12979 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkPageRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkPageRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkStatisticResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkStatisticResponse.java index a775d4f7..668df6ef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkStatisticResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinkStatisticResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; @@ -28,4 +28,4 @@ public class LinkStatisticResponse extends WeComResponse { private Long newCustomerCnt; private Long clickLinkCustomerCnt; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinksResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinksResponse.java index 996e6a52..30566281 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinksResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/LinksResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MediaMiniprogram.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MediaMiniprogram.java index 481a713b..883b78fd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MediaMiniprogram.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MediaMiniprogram.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MiniProgramStyle.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MiniProgramStyle.java index bd6d7f2c..ab73d753 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MiniProgramStyle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MiniProgramStyle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MiniprogramMsgAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MiniprogramMsgAttachment.java index 9af929a1..e7d94f2d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MiniprogramMsgAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MiniprogramMsgAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentAttachment.java index 275bef56..926dc676 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentBody.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentBody.java index 22713bdc..2fc7d06f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentCommentResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentCommentResponse.java index 1ff3f41a..46b86aad 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentCommentResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentCommentResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentCustomerListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentCustomerListResponse.java index ec4d7507..8dbf5843 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentCustomerListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentCustomerListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentDetail.java index d48c6b70..a6f0baca 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentDetailVideo.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentDetailVideo.java index 618c76ee..961d264b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentDetailVideo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentDetailVideo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentExternalContactList.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentExternalContactList.java index 66c5c590..33930341 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentExternalContactList.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentExternalContactList.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentInfoRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentInfoRequest.java index 83866063..9cf9ca33 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentInfoRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentInfoRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentLink.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentLink.java index b50a6cfc..81dd23be 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentLink.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentLink.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentListRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentListRequest.java index 978797ee..0614d7b6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentListRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentListResponse.java index 4cc38c1c..d6a6018c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentLocation.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentLocation.java index 45b3b69f..05fe0346 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentLocation.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentLocation.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentMemberTaskResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentMemberTaskResponse.java index 5274bc3a..a0af024c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentMemberTaskResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentMemberTaskResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentSenderList.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentSenderList.java index be09ea4b..6fb15211 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentSenderList.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentSenderList.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyDetail.java index 37878358..4bb28418 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyDetailResponse.java index a77fdcca..a868fea7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyPrivilege.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyPrivilege.java index 72586553..7af80f29 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyPrivilege.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyPrivilege.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyRequest.java index 14c8246f..e6244662 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentStrategyRequest.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentTaskRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentTaskRequest.java index 8bf1d2a2..cddbe923 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentTaskRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentTaskRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentTaskResultResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentTaskResultResponse.java index 85c5833c..8c3cd55a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentTaskResultResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MomentTaskResultResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgAttachment.java index 9e268d90..69b152e6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTagFilter.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTagFilter.java index 345906c3..b01ad9c6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTagFilter.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTagFilter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTemplateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTemplateRequest.java index 09cb9f1a..ee0b770e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTemplateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTemplateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTemplateResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTemplateResponse.java index f41635e2..bf0b5474 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTemplateResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MsgTemplateResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableContactWay.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableContactWay.java index 478bc11f..4cfc1dc1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableContactWay.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableContactWay.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableCustomerStrategy.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableCustomerStrategy.java index de982111..d1e7b6cf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableCustomerStrategy.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableCustomerStrategy.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableGroupChatWayBody.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableGroupChatWayBody.java index d9122a1b..61d03dbd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableGroupChatWayBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableGroupChatWayBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableMomentStrategy.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableMomentStrategy.java index 40a0ce4a..35a6a4c3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableMomentStrategy.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/MutableMomentStrategy.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OffTransferCustomerRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OffTransferCustomerRequest.java index a14052f2..ede3ca84 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OffTransferCustomerRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OffTransferCustomerRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OpenGid.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OpenGid.java index 347bfed0..2144867b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OpenGid.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OpenGid.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OwnerFilter.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OwnerFilter.java index b3f26dba..ff5bb706 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OwnerFilter.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/OwnerFilter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumAddRequest.java index 07170982..cd670083 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumAttachment.java index bada9072..d0339f01 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumDetail.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumDetail.java index 5aaf5898..1057fe82 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumDetailResponse.java index 6bea60e9..a354c3ab 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/ProductAlbumDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StatisticData.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StatisticData.java index 56b15895..608f6622 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StatisticData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StatisticData.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpGroupIds.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpGroupIds.java index 2c07cafb..ed4dc970 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpGroupIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpGroupIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpTagIds.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpTagIds.java index cbb7c3df..4b39e3cb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpTagIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpTagIds.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpTagIterator.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpTagIterator.java index ce74c9d2..e3493654 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpTagIterator.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyCorpTagIterator.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyListResponse.java index f3531009..34a4c6ba 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRange.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRange.java index 042722e2..191ef73b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRangeRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRangeRequest.java index 3a9441e8..e0f77088 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRangeRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRangeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRangeResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRangeResponse.java index eeb62f59..e047777d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRangeResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/StrategyRangeResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TagList.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TagList.java index c1fe09c4..704966a0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TagList.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TagList.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferCustomerRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferCustomerRequest.java index 4860a3b3..50df7299 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferCustomerRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferCustomerRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferCustomerResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferCustomerResponse.java index 46d6bf08..d708fcdb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferCustomerResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferCustomerResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferFailedGroupChat.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferFailedGroupChat.java index 2c6e342e..ff1a6bbe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferFailedGroupChat.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferFailedGroupChat.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferGroupChatRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferGroupChatRequest.java index 7dab339e..7217b5c6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferGroupChatRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferGroupChatRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferResultRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferResultRequest.java index 8d77e8e8..1dbee6e2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferResultRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferResultRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferResultResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferResultResponse.java index bc78bb41..a4a7156f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferResultResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/TransferResultResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UnassignedInfo.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UnassignedInfo.java index 4dfae060..a252d86b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UnassignedInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UnassignedInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UnassignedListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UnassignedListResponse.java index 0ac6a894..2d24c364 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UnassignedListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UnassignedListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UserBehaviorDataRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UserBehaviorDataRequest.java index 103125d0..145560ac 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UserBehaviorDataRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UserBehaviorDataRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UserBehaviorDataResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UserBehaviorDataResponse.java index ae645194..63962e96 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UserBehaviorDataResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/UserBehaviorDataResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VideoMomentAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VideoMomentAttachment.java index 257ba6f9..321aa542 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VideoMomentAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VideoMomentAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VideoMsgAttachment.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VideoMsgAttachment.java index 5dae094d..5b40a3ae 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VideoMsgAttachment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VideoMsgAttachment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VisibleRange.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VisibleRange.java index 393a0c8e..dfe692e3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VisibleRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/VisibleRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WechatChannels.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WechatChannels.java index 10f6096b..2dc3d42f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WechatChannels.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WechatChannels.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeCodeRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeCodeRequest.java index b4ce6b24..184d79b5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeCodeRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeCodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateAddRequest.java index 09a92a6c..c1d722c2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateEditRequest.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateEditRequest.java index a8751dde..a26e7746 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateEditRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateEditRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateResponse.java b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateResponse.java index 0af7e7b2..35bbeb3d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/externalcontact/WelcomeTemplateResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.externalcontact; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldBase.java b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldBase.java index e1ffdff1..b6a6ac8a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldBase.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldBase.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldDetail.java b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldDetail.java index 32a03bb9..b6674991 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; @@ -78,4 +78,4 @@ public FieldDetail(@JsonProperty("fieldid") Integer fieldid, this.valueMobile = valueMobile; this.valueFile = valueFile; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldGroup.java b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldGroup.java index 150c0064..dbe22445 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldGroup.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldGroup.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; @@ -24,4 +24,4 @@ public class FieldGroup { private Integer groupId; private String groupName; private List fieldList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldId.java b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldId.java index 26643af1..e51b3780 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldInfo.java b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldInfo.java index 3113e365..d04ccb87 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; @@ -28,4 +28,4 @@ public class FieldInfo { private String fieldName; private FieldType fieldType; private Boolean isMust; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldResult.java b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldResult.java index 2b2bbbd8..dff36bc9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/FieldResult.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/FieldResult.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/FileField.java b/wecom-objects/src/main/java/cn/felord/domain/hr/FileField.java index df0b2065..4e0af438 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/FileField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/FileField.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/GroupResult.java b/wecom-objects/src/main/java/cn/felord/domain/hr/GroupResult.java index 705b5723..22fe2a5f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/GroupResult.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/GroupResult.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/Int64Field.java b/wecom-objects/src/main/java/cn/felord/domain/hr/Int64Field.java index 5194adb4..6661d66e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/Int64Field.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/Int64Field.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/MobileField.java b/wecom-objects/src/main/java/cn/felord/domain/hr/MobileField.java index 6e67c79c..38ef26a4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/MobileField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/MobileField.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/NewGroup.java b/wecom-objects/src/main/java/cn/felord/domain/hr/NewGroup.java index d641ffe5..18ec77c7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/NewGroup.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/NewGroup.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/RemoveIdx.java b/wecom-objects/src/main/java/cn/felord/domain/hr/RemoveIdx.java index 48395a1a..d4268855 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/RemoveIdx.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/RemoveIdx.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoRequest.java b/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoRequest.java index 90fc029a..d862f377 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoUpdateRequest.java index 0b555cb6..f1ad67d2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoUpdateResponse.java b/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoUpdateResponse.java index c271462c..8ed1657e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoUpdateResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/StaffInfoUpdateResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/StringField.java b/wecom-objects/src/main/java/cn/felord/domain/hr/StringField.java index 76c703df..35fcfbbc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/StringField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/StringField.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/Uint32Field.java b/wecom-objects/src/main/java/cn/felord/domain/hr/Uint32Field.java index 7bda5c11..38427306 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/Uint32Field.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/Uint32Field.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/Uint64Field.java b/wecom-objects/src/main/java/cn/felord/domain/hr/Uint64Field.java index 217c6568..0a6ac084 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/Uint64Field.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/Uint64Field.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/ValueFile.java b/wecom-objects/src/main/java/cn/felord/domain/hr/ValueFile.java index ca34a63f..3a18cb0c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/ValueFile.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/ValueFile.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; @@ -26,4 +26,4 @@ @Data public class ValueFile { private List mediaId; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/hr/ValueMobile.java b/wecom-objects/src/main/java/cn/felord/domain/hr/ValueMobile.java index 8249cefe..979c2198 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/hr/ValueMobile.java +++ b/wecom-objects/src/main/java/cn/felord/domain/hr/ValueMobile.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.hr; @@ -25,4 +25,4 @@ public class ValueMobile { private String valueCountryCode; private String valueMobile; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/InfoItem.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/InfoItem.java index 76878baf..accc8627 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/InfoItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/InfoItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; @@ -30,4 +30,4 @@ public class InfoItem { private Integer num; private Integer fee; private String name; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetail.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetail.java index e395e608..a276e90a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetailResponse.java index ff834419..01347b55 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; @@ -39,4 +39,4 @@ public class InvoiceDetailResponse extends WeComResponse { private String detail; private String type; private String cardId; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetailsResponse.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetailsResponse.java index 667b3aea..7998ce87 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetailsResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceDetailsResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; @@ -31,4 +31,4 @@ @Data public class InvoiceDetailsResponse extends WeComResponse { private List itemList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceInfo.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceInfo.java index b170e1a1..f947b22e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceInfoItems.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceInfoItems.java index bbfa8aa8..44959c0b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceInfoItems.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceInfoItems.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceUpdateBatchRequest.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceUpdateBatchRequest.java index ed5f6484..91002021 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceUpdateBatchRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceUpdateBatchRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceUpdateRequest.java index b559d1f1..7d3da530 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/InvoiceUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; diff --git a/wecom-objects/src/main/java/cn/felord/domain/invoice/UserInfo.java b/wecom-objects/src/main/java/cn/felord/domain/invoice/UserInfo.java index 0b57ecfd..ba27c12f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/invoice/UserInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/invoice/UserInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.invoice; @@ -43,4 +43,4 @@ public class UserInfo { private String orderId; private String buyerNumber; private List info; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalComment.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalComment.java index 095ad991..b84dd997 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalComment.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalComment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalDownloadRequest.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalDownloadRequest.java index 59fde094..8b005ad9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalDownloadRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalDownloadRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -25,4 +25,4 @@ public class JournalDownloadRequest { private final String journaluuid; private final String fileid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalExportRequest.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalExportRequest.java index 97578150..75770552 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalExportRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalExportRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -25,4 +25,4 @@ public class JournalExportRequest { private final String journaluuid; private final String docid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordDetail.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordDetail.java index 4385b549..9e32e8b0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordRequest.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordRequest.java index c1c9acff..5b72787c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordResponse.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordResponse.java index 979f116b..4684d1ea 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalRecordResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -32,4 +32,4 @@ public class JournalRecordResponse extends WeComResponse { private List journaluuidList; private Integer nextCursor; private BoolEnum endflag; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStat.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStat.java index ca175154..7b06bf01 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStat.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStat.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -75,4 +75,4 @@ public class JournalStat { * 汇报方式 */ private JournalReportType reportType; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStatRequest.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStatRequest.java index cf5a7d64..54d6d20c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStatRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStatRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -28,4 +28,4 @@ public class JournalStatRequest { private final Instant starttime; private final Instant endtime; private final String templateId; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStatResponse.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStatResponse.java index 9ff5559d..4f5d3acd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStatResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalStatResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -29,4 +29,4 @@ @Data public class JournalStatResponse extends WeComResponse { private List statList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalUuid.java b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalUuid.java index 13a6d5e3..edc321ad 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/JournalUuid.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/JournalUuid.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/LeaderLevel.java b/wecom-objects/src/main/java/cn/felord/domain/journal/LeaderLevel.java index 3cfa8f5d..f5fd0ee6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/LeaderLevel.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/LeaderLevel.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/OpenPartyId.java b/wecom-objects/src/main/java/cn/felord/domain/journal/OpenPartyId.java index 359f1e43..608e6fcf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/OpenPartyId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/OpenPartyId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/OpenTagId.java b/wecom-objects/src/main/java/cn/felord/domain/journal/OpenTagId.java index 11c6d35a..ef93af0e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/OpenTagId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/OpenTagId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/Receivers.java b/wecom-objects/src/main/java/cn/felord/domain/journal/Receivers.java index c292e5ab..0005a51c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/Receivers.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/Receivers.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -29,4 +29,4 @@ public class Receivers { private List userList; private List tagList; private List leaderList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/ReportItem.java b/wecom-objects/src/main/java/cn/felord/domain/journal/ReportItem.java index 011796aa..7ffde971 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/ReportItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/ReportItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -28,4 +28,4 @@ public class ReportItem { private List itemlist; private UserId user; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/ReportItemDetail.java b/wecom-objects/src/main/java/cn/felord/domain/journal/ReportItemDetail.java index 9b88dd6c..59fd8fcd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/ReportItemDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/ReportItemDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -29,4 +29,4 @@ public class ReportItemDetail { private String journaluuid; private BoolEnum flag; private Instant reporttime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/ReportUserRange.java b/wecom-objects/src/main/java/cn/felord/domain/journal/ReportUserRange.java index d02c36d1..702902f6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/ReportUserRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/ReportUserRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -38,4 +38,4 @@ public class ReportUserRange { * 指定人集合 */ private List userList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/journal/WhiteRange.java b/wecom-objects/src/main/java/cn/felord/domain/journal/WhiteRange.java index 4524b4b0..992c1e41 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/journal/WhiteRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/journal/WhiteRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.journal; @@ -24,4 +24,4 @@ public class WhiteRange { private List tagList; private List partyList; private List userList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/jssdk/AgentConfigResponse.java b/wecom-objects/src/main/java/cn/felord/domain/jssdk/AgentConfigResponse.java index e2674994..ac26167f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/jssdk/AgentConfigResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/jssdk/AgentConfigResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.jssdk; diff --git a/wecom-objects/src/main/java/cn/felord/domain/jssdk/CorpConfigResponse.java b/wecom-objects/src/main/java/cn/felord/domain/jssdk/CorpConfigResponse.java index eb2052b3..438fbf7c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/jssdk/CorpConfigResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/jssdk/CorpConfigResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.jssdk; diff --git a/wecom-objects/src/main/java/cn/felord/domain/jssdk/JSignatureResponse.java b/wecom-objects/src/main/java/cn/felord/domain/jssdk/JSignatureResponse.java index 1213067b..fa9a15b2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/jssdk/JSignatureResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/jssdk/JSignatureResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.jssdk; diff --git a/wecom-objects/src/main/java/cn/felord/domain/jssdk/LaunchCodeRequest.java b/wecom-objects/src/main/java/cn/felord/domain/jssdk/LaunchCodeRequest.java index 0163cf6f..5a887897 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/jssdk/LaunchCodeRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/jssdk/LaunchCodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.jssdk; @@ -45,4 +45,4 @@ public LaunchCodeRequest(String operatorUserid, String singleChatUserId) { this.operatorUserid = operatorUserid; this.singleChat = new UserId(singleChatUserId); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/jssdk/LaunchCodeResponse.java b/wecom-objects/src/main/java/cn/felord/domain/jssdk/LaunchCodeResponse.java index cc6c9a01..c69abdce 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/jssdk/LaunchCodeResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/jssdk/LaunchCodeResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.jssdk; diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/ActivityDetail.java b/wecom-objects/src/main/java/cn/felord/domain/living/ActivityDetail.java index 70dd31ee..7e114415 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/ActivityDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/ActivityDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -33,4 +33,4 @@ public class ActivityDetail { * 活动直播特定参数,活动直播附图的mediaId列表,最多支持传5张,超过五张取前五张 */ private List imageList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/LivingCodeRequest.java b/wecom-objects/src/main/java/cn/felord/domain/living/LivingCodeRequest.java index fbf91c70..e0186e3a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/LivingCodeRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/LivingCodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/LivingCreateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/living/LivingCreateRequest.java index a23caf79..afac7224 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/LivingCreateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/LivingCreateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -171,4 +171,4 @@ public LivingCreateRequest activityDetail(ActivityDetail activityDetail) { this.activityDetail = activityDetail; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/LivingExternalUser.java b/wecom-objects/src/main/java/cn/felord/domain/living/LivingExternalUser.java index 899a6c4f..8b1df06f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/LivingExternalUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/LivingExternalUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -60,4 +60,4 @@ public class LivingExternalUser { * 邀请人的external_userid,邀请人为非企业内部成员时返回(观众首次进入直播时,其使用的直播卡片/二维码所对应的分享人;仅“推广产品”直播支持) */ private String invitorExternalUserid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/LivingId.java b/wecom-objects/src/main/java/cn/felord/domain/living/LivingId.java index 347d8602..e37837cb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/LivingId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/LivingId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/LivingInfo.java b/wecom-objects/src/main/java/cn/felord/domain/living/LivingInfo.java index 52a2b745..caf25862 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/LivingInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/LivingInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -105,4 +105,4 @@ public class LivingInfo { * 直播预约人数 */ private Integer subscribeCount; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/LivingShareInfoResponse.java b/wecom-objects/src/main/java/cn/felord/domain/living/LivingShareInfoResponse.java index 1f5a3362..657e5dce 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/LivingShareInfoResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/LivingShareInfoResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -48,4 +48,4 @@ public class LivingShareInfoResponse extends WeComResponse { * 邀请人的external_userid,邀请人为非企业内部成员时返回 (观众首次进入直播时,其使用的直播卡片/二维码所对应的分享人) */ private String invitorExternalUserid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/LivingUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/living/LivingUpdateRequest.java index c407a83e..5590904f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/LivingUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/LivingUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/LivingUser.java b/wecom-objects/src/main/java/cn/felord/domain/living/LivingUser.java index effed22c..0d3f4e1a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/LivingUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/LivingUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -51,4 +51,4 @@ public class LivingUser { * 邀请人的external_userid */ private String invitorExternalUserid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/StatInfo.java b/wecom-objects/src/main/java/cn/felord/domain/living/StatInfo.java index ce17928f..7e8debfd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/StatInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/StatInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -35,4 +35,4 @@ public class StatInfo { */ private List externalUsers; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/UserLivingsRequest.java b/wecom-objects/src/main/java/cn/felord/domain/living/UserLivingsRequest.java index 32860307..30dae16a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/UserLivingsRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/UserLivingsRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/UserLivingsResponse.java b/wecom-objects/src/main/java/cn/felord/domain/living/UserLivingsResponse.java index 521ccce5..2a4cd4fe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/UserLivingsResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/UserLivingsResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/WatchStatRequest.java b/wecom-objects/src/main/java/cn/felord/domain/living/WatchStatRequest.java index 201d9f3c..e12a223e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/WatchStatRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/WatchStatRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/WatchStatResponse.java b/wecom-objects/src/main/java/cn/felord/domain/living/WatchStatResponse.java index 3ef05284..3843f748 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/WatchStatResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/WatchStatResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -43,4 +43,4 @@ public class WatchStatResponse extends WeComResponse { * 统计信息列表 */ private StatInfo statInfo; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/living/WwShareCode.java b/wecom-objects/src/main/java/cn/felord/domain/living/WwShareCode.java index de76f10c..a7572a71 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/living/WwShareCode.java +++ b/wecom-objects/src/main/java/cn/felord/domain/living/WwShareCode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.living; @@ -29,4 +29,4 @@ public class WwShareCode { * “推广产品”直播观众跳转小程序商城时会在小程序path中带上ww_share_code=xxxxx参数,ww_share_code五分钟内有效 */ private final String wwShareCode; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/media/MediaJobDetail.java b/wecom-objects/src/main/java/cn/felord/domain/media/MediaJobDetail.java index 83898b1d..d99a0db8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/media/MediaJobDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/media/MediaJobDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.media; diff --git a/wecom-objects/src/main/java/cn/felord/domain/media/MediaJobResponse.java b/wecom-objects/src/main/java/cn/felord/domain/media/MediaJobResponse.java index 24284da6..53bebca1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/media/MediaJobResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/media/MediaJobResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.media; diff --git a/wecom-objects/src/main/java/cn/felord/domain/media/MediaResponse.java b/wecom-objects/src/main/java/cn/felord/domain/media/MediaResponse.java index 5d8f0b9d..5f2e4e7d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/media/MediaResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/media/MediaResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.media; diff --git a/wecom-objects/src/main/java/cn/felord/domain/media/MediaUploadRequest.java b/wecom-objects/src/main/java/cn/felord/domain/media/MediaUploadRequest.java index 26e32a9b..eab1ce97 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/media/MediaUploadRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/media/MediaUploadRequest.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.media; diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingDetail.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingDetail.java index d0b96f8d..f8bc1474 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -29,4 +29,4 @@ public class BookingDetail { private Integer meetingroomId; private List schedule; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingInfoRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingInfoRequest.java index 1c840472..66a87dcb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingInfoRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingInfoRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -65,4 +65,4 @@ public BookingInfoRequest floor(String floor) { this.floor = floor; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingInfoResponse.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingInfoResponse.java index 7c7a8e68..9aadd680 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingInfoResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingInfoResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingRequest.java index 354e08de..9d1f1bda 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -89,4 +89,4 @@ public BookingRequest(int meetingroomId, Instant startTime, Instant endTime, Str this.subject = subject; this.attendees = attendees; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingResponse.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingResponse.java index b6547e50..cc16dd7d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -30,4 +30,4 @@ public class BookingResponse extends WeComResponse { private String bookingId; private String scheduleId; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingResultResponse.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingResultResponse.java index cc6f0188..7dfe2501 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingResultResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingResultResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -33,4 +33,4 @@ public class BookingResultResponse extends WeComResponse { private String bookingId; private List conflictDate; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingSchedule.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingSchedule.java index af3c8870..e3eb94ec 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingSchedule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/BookingSchedule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -34,4 +34,4 @@ public class BookingSchedule { private Instant endTime; private String booker; private BookingStatus status; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/CancelBookRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/CancelBookRequest.java index 355f61c9..907f7670 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/CancelBookRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/CancelBookRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -31,4 +31,4 @@ public class CancelBookRequest { private String bookingId; private BoolEnum keepSchedule; private Instant cancelDate; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/Coordinate.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/Coordinate.java index 80c6d657..fff48a19 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/Coordinate.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/Coordinate.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -51,4 +51,4 @@ public class Coordinate { this.longitude = longitude; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/MeetBookingRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/MeetBookingRequest.java index a1176036..91bd68f4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/MeetBookingRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/MeetBookingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -36,4 +36,4 @@ public MeetBookingRequest(int meetingroomId, String meetingid, String booker) { this.meetingid = meetingid; this.booker = booker; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/MeetingRoomId.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/MeetingRoomId.java index 1bc1414b..ad9814ea 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/MeetingRoomId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/MeetingRoomId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/Range.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/Range.java index f57ff892..3db3ea1d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/Range.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/Range.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -52,4 +52,4 @@ public class Range { this.departmentList = departmentList; this.userList = userList; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomBookingRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomBookingRequest.java index 27d88201..3dd3b27f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomBookingRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomBookingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomBookingResponse.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomBookingResponse.java index 4ce38fb6..8be47a2f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomBookingResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomBookingResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomCreateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomCreateRequest.java index 67149eda..bf9ad6bd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomCreateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomCreateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -165,4 +165,4 @@ public RoomCreateRequest range(List departmentList, List userLi this.range = new Range(departmentList, userList); return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomDetail.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomDetail.java index bd7f9f1e..314a9231 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomListRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomListRequest.java index e1f28952..e83d2407 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomListRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -78,4 +78,4 @@ public RoomListRequest building(String building) { this.building = building; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomListResponse.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomListResponse.java index 6af6d955..4b52c928 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomListResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomUpdateRequest.java index 9ee90801..4cdb5cc8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/RoomUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/ScheduleBookingRequest.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/ScheduleBookingRequest.java index 7d3e5320..83e20054 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/ScheduleBookingRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/ScheduleBookingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -36,4 +36,4 @@ public ScheduleBookingRequest(int meetingroomId, String scheduleId, String booke this.scheduleId = scheduleId; this.booker = booker; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/ScheduleInfo.java b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/ScheduleInfo.java index f703c65c..eae548fd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/meetingroom/ScheduleInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/meetingroom/ScheduleInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.meetingroom; @@ -35,4 +35,4 @@ public class ScheduleInfo { private Instant endTime; private String booker; private BookingStatus status; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/AbstractCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/AbstractCard.java index 86655525..5ad47c84 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/AbstractCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/AbstractCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/AbstractMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/AbstractMessageBody.java index 5257d77a..d1f7cda5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/AbstractMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/AbstractMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/AbstractReplaceCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/AbstractReplaceCard.java index bacbb9fd..9cb4ca34 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/AbstractReplaceCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/AbstractReplaceCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/AbstractUpdateTemplateCardRequest.java b/wecom-objects/src/main/java/cn/felord/domain/message/AbstractUpdateTemplateCardRequest.java index e673278e..d7a0948b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/AbstractUpdateTemplateCardRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/AbstractUpdateTemplateCardRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/ActionMenu.java b/wecom-objects/src/main/java/cn/felord/domain/message/ActionMenu.java index a6a1c671..cbce0e25 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/ActionMenu.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/ActionMenu.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/Button.java b/wecom-objects/src/main/java/cn/felord/domain/message/Button.java index 6a3e3ca5..15065351 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/Button.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/Button.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/ButtonMessageTemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/ButtonMessageTemplateCard.java index 7b10b2fe..b6ab56d8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/ButtonMessageTemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/ButtonMessageTemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/ButtonMessageTemplateReplaceCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/ButtonMessageTemplateReplaceCard.java index 3bd2909c..da22db2f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/ButtonMessageTemplateReplaceCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/ButtonMessageTemplateReplaceCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/ButtonSelection.java b/wecom-objects/src/main/java/cn/felord/domain/message/ButtonSelection.java index 8c564b5a..5e83e0fa 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/ButtonSelection.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/ButtonSelection.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/Checkbox.java b/wecom-objects/src/main/java/cn/felord/domain/message/Checkbox.java index 28246cb1..e0dc1ab0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/Checkbox.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/Checkbox.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/FileMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/FileMessageBody.java index 1d76e4cb..0fc1603d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/FileMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/FileMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/ImageMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/ImageMessageBody.java index b6dadfbe..cdfb0c8c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/ImageMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/ImageMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MarkdownMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/MarkdownMessageBody.java index 0ff9ef90..4762b4d7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MarkdownMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MarkdownMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageArticle.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageArticle.java index c0eace7d..f89f5180 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageArticle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageArticle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageBodyBuilder.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageBodyBuilder.java index 07a82761..bec66a9d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageBodyBuilder.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageBodyBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.message; /** diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageBodyBuilders.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageBodyBuilders.java index c74fed18..1415597a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageBodyBuilders.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageBodyBuilders.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageNews.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageNews.java index 5ed2d24d..c8fe8a46 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageNews.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageNews.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageResponse.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageResponse.java index 1ef87284..40e2ebbb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageTemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageTemplateCard.java index 4d27cfb1..e812cf9d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageTemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageTemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageTemplateReplaceCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageTemplateReplaceCard.java index d97830ee..8a03e175 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageTemplateReplaceCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageTemplateReplaceCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageTextCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageTextCard.java index f9d38319..be774bae 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageTextCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageTextCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MessageVideo.java b/wecom-objects/src/main/java/cn/felord/domain/message/MessageVideo.java index 3b88149e..cf490f90 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MessageVideo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MessageVideo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MiniprogramMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/MiniprogramMessageBody.java index 9aa2205e..72ecefe5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MiniprogramMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MiniprogramMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MiniprogramNotice.java b/wecom-objects/src/main/java/cn/felord/domain/message/MiniprogramNotice.java index 50290a65..90679cfc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MiniprogramNotice.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MiniprogramNotice.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MpNewsArticle.java b/wecom-objects/src/main/java/cn/felord/domain/message/MpNewsArticle.java index bb435d81..88523e34 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MpNewsArticle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MpNewsArticle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MpNewsMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/MpNewsMessageBody.java index b703a3ba..5d932c59 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MpNewsMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MpNewsMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MultipleMessageTemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/MultipleMessageTemplateCard.java index 4aafd231..4d93654c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MultipleMessageTemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MultipleMessageTemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/MultipleMessageTemplateReplaceCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/MultipleMessageTemplateReplaceCard.java index d18cd99b..8d9ad354 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/MultipleMessageTemplateReplaceCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/MultipleMessageTemplateReplaceCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/NewsArticle.java b/wecom-objects/src/main/java/cn/felord/domain/message/NewsArticle.java index 61301a2c..e4ae7e25 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/NewsArticle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/NewsArticle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageBody.java index 27002173..e9dabc15 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageTemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageTemplateCard.java index 1cc57198..524bc63b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageTemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageTemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageTemplateReplaceCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageTemplateReplaceCard.java index 0fdc3c50..f63ce948 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageTemplateReplaceCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/NewsMessageTemplateReplaceCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/Option.java b/wecom-objects/src/main/java/cn/felord/domain/message/Option.java index d0a82924..8d4e803f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/Option.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/Option.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/Select.java b/wecom-objects/src/main/java/cn/felord/domain/message/Select.java index baa591ac..505d1859 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/Select.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/Select.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/SubmitButton.java b/wecom-objects/src/main/java/cn/felord/domain/message/SubmitButton.java index eb159631..26ff180a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/SubmitButton.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/SubmitButton.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/TemplateCardBuilders.java b/wecom-objects/src/main/java/cn/felord/domain/message/TemplateCardBuilders.java index fa032fb4..b69682ed 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/TemplateCardBuilders.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/TemplateCardBuilders.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/TemplateCardMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/TemplateCardMessageBody.java index f4803dd2..01b118ea 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/TemplateCardMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/TemplateCardMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/TemplateReplaceCardBuilders.java b/wecom-objects/src/main/java/cn/felord/domain/message/TemplateReplaceCardBuilders.java index 937502c1..4f556b95 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/TemplateReplaceCardBuilders.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/TemplateReplaceCardBuilders.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/TextCardMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/TextCardMessageBody.java index 63742323..7eb4b0fe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/TextCardMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/TextCardMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageBody.java index 64d4bf89..f4e9b6f1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageTemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageTemplateCard.java index 3f337b66..0082528a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageTemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageTemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageTemplateReplaceCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageTemplateReplaceCard.java index 07cd9135..084924d5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageTemplateReplaceCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/TextMessageTemplateReplaceCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/UpdateDisabledBtnRequest.java b/wecom-objects/src/main/java/cn/felord/domain/message/UpdateDisabledBtnRequest.java index 972949de..1a284db1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/UpdateDisabledBtnRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/UpdateDisabledBtnRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/UpdateNewTemplateCardRequest.java b/wecom-objects/src/main/java/cn/felord/domain/message/UpdateNewTemplateCardRequest.java index c1b9e4da..e9944803 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/UpdateNewTemplateCardRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/UpdateNewTemplateCardRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/VideoMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/VideoMessageBody.java index 1a1e1ebb..f06cab42 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/VideoMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/VideoMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/VoiceMessageBody.java b/wecom-objects/src/main/java/cn/felord/domain/message/VoiceMessageBody.java index d18ba8a6..cb40b841 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/VoiceMessageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/VoiceMessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/VoteMessageTemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/VoteMessageTemplateCard.java index 1d662987..0f41d92f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/VoteMessageTemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/VoteMessageTemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; diff --git a/wecom-objects/src/main/java/cn/felord/domain/message/VoteMessageTemplateReplaceCard.java b/wecom-objects/src/main/java/cn/felord/domain/message/VoteMessageTemplateReplaceCard.java index 17dc9b70..fb36ebc0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/message/VoteMessageTemplateReplaceCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/message/VoteMessageTemplateReplaceCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.message; @@ -66,4 +66,4 @@ public VoteMessageTemplateReplaceCard build() { return new VoteMessageTemplateReplaceCard(mainTitle, source, checkbox, submitButton); } } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/AgreeInfoRequest.java b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/AgreeInfoRequest.java index fbeba743..50b447b3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/AgreeInfoRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/AgreeInfoRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.msgaudit; @@ -28,4 +28,4 @@ @Data public class AgreeInfoRequest { private final List info; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/ChatAgreeDetail.java b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/ChatAgreeDetail.java index ec294dfa..dd2b1bc1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/ChatAgreeDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/ChatAgreeDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.msgaudit; @@ -40,4 +40,4 @@ public class ChatAgreeDetail { * 外部联系人 */ private String exteranalopenid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/InnerChatInfoResponse.java b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/InnerChatInfoResponse.java index f0f1c934..5ef245e0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/InnerChatInfoResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/InnerChatInfoResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.msgaudit; @@ -52,4 +52,4 @@ public class InnerChatInfoResponse extends WeComResponse { * roomid对应的群成员列表 */ private List members; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/InnerChatMember.java b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/InnerChatMember.java index a8e6f158..6f66cd99 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/InnerChatMember.java +++ b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/InnerChatMember.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.msgaudit; @@ -35,4 +35,4 @@ public class InnerChatMember { * roomid群成员的入群时间 */ private Instant jointime; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/PermitUsersRequest.java b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/PermitUsersRequest.java index cfe57be0..b1cb0916 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/PermitUsersRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/PermitUsersRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.msgaudit; diff --git a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/RoomId.java b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/RoomId.java index 363b61a6..163322ef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/RoomId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/RoomId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.msgaudit; diff --git a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/SingleAgreeDetail.java b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/SingleAgreeDetail.java index 1a5a2ac1..9e426e04 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/SingleAgreeDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/SingleAgreeDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.msgaudit; @@ -33,4 +33,4 @@ public class SingleAgreeDetail extends ChatAgreeDetail { */ private String userid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/TwoSides.java b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/TwoSides.java index a93319f2..649d3f98 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/msgaudit/TwoSides.java +++ b/wecom-objects/src/main/java/cn/felord/domain/msgaudit/TwoSides.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.msgaudit; @@ -61,4 +61,4 @@ public class TwoSides { public static TwoSides between(String userid, String exteranalUserId) { return new TwoSides(userid, exteranalUserId); } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/AttendeeDetail.java b/wecom-objects/src/main/java/cn/felord/domain/oa/AttendeeDetail.java index 960c294a..e8a8ded9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/AttendeeDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/AttendeeDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarAddRequest.java index 4441631b..c58ece6c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarBody.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarBody.java index cef97479..84dcbab2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDelRequest.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDelRequest.java index b47aab90..46140669 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDelRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDelRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetail.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetail.java index 95feb294..232bcb65 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetailRequest.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetailRequest.java index f26e567b..f18b0994 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetailRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetailRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetailResponse.java index f5e892bd..76d5f980 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarSharer.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarSharer.java index 5e8da24c..286ae224 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarSharer.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarSharer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarUpdateBody.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarUpdateBody.java index 4b18885c..e0650416 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarUpdateBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarUpdateBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarUpdateRequest.java index 4a356429..0f4e4624 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/CalendarUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ExcludeTime.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ExcludeTime.java index 3839159c..26204e05 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ExcludeTime.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ExcludeTime.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/PublicRange.java b/wecom-objects/src/main/java/cn/felord/domain/oa/PublicRange.java index 989aca31..03634a6b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/PublicRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/PublicRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/Reminders.java b/wecom-objects/src/main/java/cn/felord/domain/oa/Reminders.java index c97a05f6..296bb0b1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/Reminders.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/Reminders.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; @@ -266,4 +266,4 @@ public Reminders timezone(int timezone) { return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/RemindersDetail.java b/wecom-objects/src/main/java/cn/felord/domain/oa/RemindersDetail.java index 8b51c67a..d0dff033 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/RemindersDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/RemindersDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleAddRequest.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleAddRequest.java index 1de87ee5..0afaa020 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleAddRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleAddRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; @@ -27,4 +27,4 @@ public class ScheduleAddRequest { private final ScheduleRequestBody schedule; private Integer agentid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleAttendees.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleAttendees.java index fef6f4f9..b97a42da 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleAttendees.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleAttendees.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleCalendarQuery.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleCalendarQuery.java index 075ca589..b2662458 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleCalendarQuery.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleCalendarQuery.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDelRequest.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDelRequest.java index aecbec1c..dac5ea96 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDelRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDelRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; @@ -73,4 +73,4 @@ public ScheduleDelRequest(String scheduleId, ScheduleOpMode opMode, Instant opSt this.opMode = opMode; this.opStartTime = opStartTime; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetail.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetail.java index c7c65c8c..76d5e59c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetailRequest.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetailRequest.java index db1659c0..aa1ccc4b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetailRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetailRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetailResponse.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetailResponse.java index b0318fa9..ac47baae 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetailResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleDetailResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleRequestBody.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleRequestBody.java index 15774a3c..a1a19c96 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleRequestBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleRequestBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; @@ -123,4 +123,4 @@ public ScheduleRequestBody isWholeDay(BoolEnum isWholeDay) { this.isWholeDay = isWholeDay; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleUpdateBody.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleUpdateBody.java index 49bb34f6..cbdedb4f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleUpdateBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleUpdateBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; diff --git a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleUpdateRequest.java index 61899084..0894b966 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/oa/ScheduleUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.oa; @@ -33,4 +33,4 @@ public class ScheduleUpdateRequest { private ScheduleOpMode opMode; private Instant opStartTime; private final ScheduleUpdateBody schedule; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceCodes.java b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceCodes.java index 8e26cf17..3adde915 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceCodes.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceCodes.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceConfirmResponse.java b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceConfirmResponse.java index 84a1ef2e..d5e4606f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceConfirmResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceConfirmResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceDelRequest.java b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceDelRequest.java index c4b78279..306d9eb3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceDelRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceDelRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceListRequest.java b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceListRequest.java index 7caa7dae..7f9287e8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceListRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; @@ -98,4 +98,4 @@ public DeviceListRequest limit(int limit) { this.limit = limit; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceResult.java b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceResult.java index 1484936b..0df48886 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceResult.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceResult.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceResultResponse.java b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceResultResponse.java index 96774832..4a962894 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/DeviceResultResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/DeviceResultResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/ExternalUser.java b/wecom-objects/src/main/java/cn/felord/domain/security/ExternalUser.java index 19eec93c..0b14a01b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/ExternalUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/ExternalUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordDetail.java b/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordDetail.java index 97469658..5cc19c3e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordRequest.java b/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordRequest.java index aa024c40..6476e118 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; @@ -100,4 +100,4 @@ public FileOptRecordRequest useridList(List useridList) { this.useridList = useridList; return this; } -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordResponse.java b/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordResponse.java index 6e3d7ffb..1b43415a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/FileOptRecordResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/Operation.java b/wecom-objects/src/main/java/cn/felord/domain/security/Operation.java index b6a443e6..5752ddd3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/Operation.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/Operation.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; @@ -29,4 +29,4 @@ public class Operation { private OptSource source; private OptType type; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/TrustDevice.java b/wecom-objects/src/main/java/cn/felord/domain/security/TrustDevice.java index 3a6250c2..e5448749 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/TrustDevice.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/TrustDevice.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/TrustDeviceDetail.java b/wecom-objects/src/main/java/cn/felord/domain/security/TrustDeviceDetail.java index 5f16ebc3..36f1559a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/TrustDeviceDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/TrustDeviceDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/TrustDevices.java b/wecom-objects/src/main/java/cn/felord/domain/security/TrustDevices.java index ae5be766..71b2f3af 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/TrustDevices.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/TrustDevices.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/security/UserDeviceRequest.java b/wecom-objects/src/main/java/cn/felord/domain/security/UserDeviceRequest.java index 9ebe5a6a..3debc308 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/security/UserDeviceRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/security/UserDeviceRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.security; diff --git a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallResponse.java b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallResponse.java index 5702bed3..b983b081 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallResponse.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.urgentcall; diff --git a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallStateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallStateRequest.java index b7677b15..948f93c4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallStateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallStateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.urgentcall; diff --git a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallStateResponse.java b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallStateResponse.java index 080bc354..7792321f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallStateResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CallStateResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.urgentcall; diff --git a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CalleeUsers.java b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CalleeUsers.java index f2be180e..12b6e991 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CalleeUsers.java +++ b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/CalleeUsers.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.urgentcall; diff --git a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/State.java b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/State.java index ee5d04ea..0ff6e754 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/urgentcall/State.java +++ b/wecom-objects/src/main/java/cn/felord/domain/urgentcall/State.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.urgentcall; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookArticle.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookArticle.java index 96c462d0..7b1784aa 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookArticle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookArticle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookBody.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookBody.java index 81e6c222..281ad536 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookFileBody.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookFileBody.java index b2f86b17..100daf0c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookFileBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookFileBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookImageBody.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookImageBody.java index 673b867b..614d3ac4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookImageBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookImageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookMarkdownBody.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookMarkdownBody.java index 06e5b76a..202773e9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookMarkdownBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookMarkdownBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookNewsBody.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookNewsBody.java index 25176a09..eee5c0f6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookNewsBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookNewsBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookTemplateCardBody.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookTemplateCardBody.java index 36a645de..18f03161 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookTemplateCardBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookTemplateCardBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookTextBody.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookTextBody.java index a3712d6c..1bb028f6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookTextBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookTextBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookVoiceBody.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookVoiceBody.java index 04eaea08..c48983e0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookVoiceBody.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/WebhookVoiceBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppCardAction.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppCardAction.java index 295566e9..5a524dc5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppCardAction.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppCardAction.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppImageTextArea.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppImageTextArea.java index 52fdfb0d..9d9ac542 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppImageTextArea.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppImageTextArea.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppJump.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppJump.java index 820b2311..b90a3e7e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppJump.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppJump.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppQuoteArea.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppQuoteArea.java index a4ab4da1..ee58ddc7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppQuoteArea.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AppQuoteArea.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AtStaffHorizontalContent.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AtStaffHorizontalContent.java index fae10f53..3e587cd5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AtStaffHorizontalContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AtStaffHorizontalContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AttachmentHorizontalContent.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AttachmentHorizontalContent.java index 13782cbf..d31a9654 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AttachmentHorizontalContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/AttachmentHorizontalContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardAction.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardAction.java index 5181d70b..352e4f8d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardAction.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardAction.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardImage.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardImage.java index c63a6a13..9e1a7afe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardImage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardImage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardSource.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardSource.java index 67873467..597ba30f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardSource.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardSource.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardType.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardType.java index 72a43aa2..13dfe701 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardType.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/CardType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/ClickEventType.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/ClickEventType.java index 25fae480..c9304dd0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/ClickEventType.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/ClickEventType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/EmphasisContent.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/EmphasisContent.java index 19a89801..3bca2367 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/EmphasisContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/EmphasisContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/HorizontalContent.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/HorizontalContent.java index cdeba275..5d83013a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/HorizontalContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/HorizontalContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/HorizontalContentType.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/HorizontalContentType.java index f5608bb1..3f06c50f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/HorizontalContentType.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/HorizontalContentType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/ImageTextArea.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/ImageTextArea.java index a8db23e1..5221133e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/ImageTextArea.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/ImageTextArea.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/Jump.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/Jump.java index bcdc1fe6..491761ed 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/Jump.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/Jump.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/MainTitle.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/MainTitle.java index b6ec651e..e10114d5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/MainTitle.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/MainTitle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NewsTemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NewsTemplateCard.java index 0b1fc508..b478c13c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NewsTemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NewsTemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneImageTextArea.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneImageTextArea.java index 7138e2a6..8e01e67d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneImageTextArea.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneImageTextArea.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneJump.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneJump.java index ad1d2808..715e8a70 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneJump.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneJump.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneQuoteArea.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneQuoteArea.java index f3dfe24a..9bc111ea 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneQuoteArea.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/NoneQuoteArea.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/QuoteArea.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/QuoteArea.java index ed2e83ce..92565f2d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/QuoteArea.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/QuoteArea.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TemplateCard.java index 38a85a0b..9dc53ddf 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TextHorizontalContent.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TextHorizontalContent.java index 7813a32a..fc19eb53 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TextHorizontalContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TextHorizontalContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TextTemplateCard.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TextTemplateCard.java index 510eff04..413f344d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TextTemplateCard.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/TextTemplateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlCardAction.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlCardAction.java index cb8d178c..88b628cc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlCardAction.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlCardAction.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlHorizontalContent.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlHorizontalContent.java index fd58c3fc..38b67184 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlHorizontalContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlHorizontalContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlImageTextArea.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlImageTextArea.java index 1995cb80..00529b8b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlImageTextArea.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlImageTextArea.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlJump.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlJump.java index 6785342b..536b7ba0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlJump.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlJump.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlQuoteArea.java b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlQuoteArea.java index 0a3d706c..8c1636f2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlQuoteArea.java +++ b/wecom-objects/src/main/java/cn/felord/domain/webhook/card/UrlQuoteArea.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.webhook.card; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AccessRule.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AccessRule.java index b7de26d8..f6dc9769 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AccessRule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AccessRule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; @@ -31,4 +31,4 @@ public class AccessRule { private Boolean corpInternalApproveOnlyByAdmin; private Boolean corpExternalApproveOnlyByAdmin; private DocAuthType corpInternalAuth; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AccessRuleUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AccessRuleUpdateRequest.java index 14073bbf..bddde8dc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AccessRuleUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AccessRuleUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; @@ -32,4 +32,4 @@ public class AccessRuleUpdateRequest { private Boolean corpExternalApproveOnlyByAdmin; private DocAuthType corpInternalAuth; private List coAuthList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetRequest.java index f616c9e8..0d85a41f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetResponse.java index 95cef82c..0c99b86c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/AddSheetResponse.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellData.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellData.java index 0480efc2..a23ada09 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellData.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellFormat.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellFormat.java index 0d3c4e0f..c971c81c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellFormat.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellFormat.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellLink.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellLink.java index 35712b5e..ad0ad012 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellLink.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellLink.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellValue.java index b7fb175a..1e715e2f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CellValue.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import cn.felord.utils.StringUtils; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CoAuthListItem.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CoAuthListItem.java index 6337c34e..b71915ca 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CoAuthListItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CoAuthListItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; @@ -28,4 +28,4 @@ public class CoAuthListItem { private DocAuthType auth; private String departmentid; private DocAuthListType type; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Color.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Color.java index 840645b1..2f4e1ee2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Color.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Color.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocRequest.java index d477d556..f734ac36 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocRequest.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocResponse.java index da3b43a9..038bd31f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/CreateDocResponse.java @@ -1,17 +1,17 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionRequest.java index 969a8996..bc5982e0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import cn.felord.enumeration.Dimension; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionResponse.java index afb43b1d..7b52472b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DeleteDimensionResponse.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocAuthResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocAuthResponse.java index fa638bf7..bd82177b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocAuthResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocAuthResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; @@ -32,4 +32,4 @@ public class DocAuthResponse extends WeComResponse { private SecureSetting secureSetting; private List docMemberList; private List coAuthList; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBaseInfo.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBaseInfo.java index d884bf1b..0b080d3c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBaseInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBaseInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java index 1403a5a3..d279d258 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocBatchUpdateRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocDeleteContent.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocDeleteContent.java index 7a911b27..85e272b8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocDeleteContent.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocDeleteContent.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocId.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocId.java index 4f9b033a..14ead327 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertImage.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertImage.java index 331958a6..bb63bf0a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertImage.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertImage.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertLocation.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertLocation.java index e5541e82..f731d55c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertLocation.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertLocation.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertTable.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertTable.java index b77cf416..c0f0ca0c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertTable.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertTable.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertText.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertText.java index 4e3c95fb..92b66841 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocInsertText.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocLocation.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocLocation.java index 0323e0c4..dfc7ec9d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocLocation.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocLocation.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocMemberListItem.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocMemberListItem.java index ac2c25d7..50aa6a67 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocMemberListItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocMemberListItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; @@ -29,4 +29,4 @@ public class DocMemberListItem { private DocAuthListType type; private String tmpExternalUserid; private String userid; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocRange.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocRange.java index 70595bed..6dc49937 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocRange.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocReplaceText.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocReplaceText.java index d2e5f562..8820d5a9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocReplaceText.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocReplaceText.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocSecuritySetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocSecuritySetting.java index d54278cb..d788f062 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocSecuritySetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocSecuritySetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocTextProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocTextProperty.java index 9df42fac..e95a90a0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocTextProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocTextProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateRequest.java index 1f0114ef..182a42a6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateTextProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateTextProperty.java index d3777af4..9b0f957c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateTextProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/DocUpdateTextProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/FileAuthMember.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/FileAuthMember.java index ba09fcc4..eb41c589 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/FileAuthMember.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/FileAuthMember.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/FileMemberUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/FileMemberUpdateRequest.java index a0867c7b..99ace344 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/FileMemberUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/FileMemberUpdateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/GridData.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/GridData.java index 29f76ff8..f8a1d068 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/GridData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/GridData.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RenameDocRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RenameDocRequest.java index f9552554..084c8408 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RenameDocRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RenameDocRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RowData.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RowData.java index 66e75d3a..28dbc26a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RowData.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/RowData.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SecureSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SecureSetting.java index dd33d2f8..2f75c6a1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SecureSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SecureSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; @@ -26,4 +26,4 @@ public class SecureSetting { private Boolean enableReadonlyComment; private Watermark watermark; private Boolean enableReadonlyCopy; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateRequest.java index 0508b097..b2e73783 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateResponse.java index 11bae493..68ae1d92 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetBatchUpdateResponse.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetId.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetId.java index 63f7c095..20bc109c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetId.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetProperties.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetProperties.java index c7a27fb6..233890f5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetProperties.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetProperties.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateRequest.java index 414ed897..bae58c26 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateResponse.java index 0262f3af..79ce263e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/SheetUpdateResponse.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import cn.felord.enumeration.SheetUpdateEvent; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/TextFormat.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/TextFormat.java index 10a49a0b..4fea8192 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/TextFormat.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/TextFormat.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeRequest.java index 16795278..4ad9506c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeResponse.java index bf7ee0ce..885a98c5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/UpdateRangeResponse.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.doc; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Watermark.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Watermark.java index c9086569..6a3f83d1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Watermark.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/doc/Watermark.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.doc; @@ -28,4 +28,4 @@ public class Watermark { private Boolean showText; private Boolean showVisitorName; private String text; -} \ No newline at end of file +} diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AbstractUpdateFormRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AbstractUpdateFormRequest.java index e32c004d..6a61031c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AbstractUpdateFormRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AbstractUpdateFormRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AllowMultipleSelection.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AllowMultipleSelection.java index dc43912b..675a367f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AllowMultipleSelection.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AllowMultipleSelection.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerFileExtendReply.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerFileExtendReply.java index 1dba9f2a..ae4f8886 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerFileExtendReply.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerFileExtendReply.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerOptionExtendReply.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerOptionExtendReply.java index aa7ab01f..fc95aba7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerOptionExtendReply.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerOptionExtendReply.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerReply.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerReply.java index 2a40ed67..78ab1dcb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerReply.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerReply.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerReplyItem.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerReplyItem.java index 00931e37..d7e51beb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerReplyItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/AnswerReplyItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CheckboxQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CheckboxQuestionExtendSetting.java index 6b950c9e..de751600 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CheckboxQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CheckboxQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CheckboxSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CheckboxSetting.java index c7715a02..21c0be22 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CheckboxSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CheckboxSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CreateFormRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CreateFormRequest.java index ad950374..a56fb312 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CreateFormRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CreateFormRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CreateSettingFormRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CreateSettingFormRequest.java index 842d3d75..746e3855 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CreateSettingFormRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/CreateSettingFormRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DateQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DateQuestionExtendSetting.java index 14ff9fb5..6efd25ab 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DateQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DateQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DateSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DateSetting.java index 8cdf7926..ae30ca1c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DateSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DateSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DepartmentQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DepartmentQuestionExtendSetting.java index 8a69387a..39f690d9 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DepartmentQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DepartmentQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DurationQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DurationQuestionExtendSetting.java index 72530dba..7956e3b7 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DurationQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DurationQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DurationSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DurationSetting.java index 4064d51c..0b47fe1d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DurationSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/DurationSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FileQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FileQuestionExtendSetting.java index 8a7aef87..f766231c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FileQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FileQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FileSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FileSetting.java index 99d39dc5..274970c4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FileSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FileSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FillInRange.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FillInRange.java index 3366522a..2dd2774e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FillInRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FillInRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswer.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswer.java index 8bc6bb19..6539f51c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswer.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerItem.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerItem.java index 2cdea721..5b072b17 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerRequest.java index 71d4fcbf..c5242431 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerResponse.java index fe09ef8d..806b631f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormAnswerResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormConfirmedRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormConfirmedRequest.java index 405ebbba..02231c53 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormConfirmedRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormConfirmedRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormConfirmedResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormConfirmedResponse.java index 090d4606..44066a6e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormConfirmedResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormConfirmedResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormDetail.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormDetail.java index 2067a0f8..4bfd5795 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormInfo.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormInfo.java index 0dffbcb4..3f14a5d3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormItem.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormItem.java index bb2b5948..9b6e2a0c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormOptionItem.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormOptionItem.java index ed273153..9da9603d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormOptionItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormOptionItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormQuestion.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormQuestion.java index 6fab7699..da8f2ecd 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormQuestion.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormQuestion.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormSetting.java index 6167cfc6..d4ae929b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormSettings.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormSettings.java index b18a939f..4d7009fc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormSettings.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormSettings.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormStatisticRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormStatisticRequest.java index 688a6f67..72adec4b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormStatisticRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormStatisticRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormStatisticResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormStatisticResponse.java index 83ab48eb..0b43eedb 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormStatisticResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormStatisticResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormUnConfirmedRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormUnConfirmedRequest.java index 056f718d..30697300 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormUnConfirmedRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormUnConfirmedRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormUnConfirmedResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormUnConfirmedResponse.java index 9fc799cf..9760ac01 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormUnConfirmedResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/FormUnConfirmedResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/ImageQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/ImageQuestionExtendSetting.java index d8216d38..bbb296ab 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/ImageQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/ImageQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/ImageSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/ImageSetting.java index ecf3df7c..5a0b362c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/ImageSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/ImageSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/LocationQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/LocationQuestionExtendSetting.java index a1c3a0d4..1b8257cc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/LocationQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/LocationQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/LocationSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/LocationSetting.java index fb88a2c1..9b576a61 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/LocationSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/LocationSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/MemberQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/MemberQuestionExtendSetting.java index 0e44513d..1c01df72 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/MemberQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/MemberQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/NullQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/NullQuestionExtendSetting.java index 4ce51322..182d53fa 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/NullQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/NullQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/QuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/QuestionExtendSetting.java index 8a4f7c61..62307f15 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/QuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/QuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/RadioQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/RadioQuestionExtendSetting.java index 5056236c..fa693e88 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/RadioQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/RadioQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/RadioSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/RadioSetting.java index b09b4450..75a257d5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/RadioSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/RadioSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormDetail.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormDetail.java index 565127d5..4a2f218a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormInfo.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormInfo.java index 8052801b..5e9bd693 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormItem.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormItem.java index 26b0df9e..5343d62f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormItem.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; @@ -51,15 +51,15 @@ public class SettingFormItem { /** * Instantiates a new Form item. * - * @param questionId the question id - * @param title the title - * @param pos the pos - * @param status the status - * @param replyType the reply type - * @param mustReply the must reply - * @param note the note - * @param placeholder the placeholder - * @param optionItem the option item + * @param questionId the question id + * @param title the title + * @param pos the pos + * @param status the status + * @param replyType the reply type + * @param mustReply the must reply + * @param note the note + * @param placeholder the placeholder + * @param optionItem the option item */ @JsonCreator public SettingFormItem(@JsonProperty("question_id") int questionId, diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormQuestion.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormQuestion.java index 3966ddfc..5a3bc1c0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormQuestion.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SettingFormQuestion.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SubmitUser.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SubmitUser.java index 53806af5..0e40d006 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SubmitUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/SubmitUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TemperatureQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TemperatureQuestionExtendSetting.java index bc19279f..dd125f6a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TemperatureQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TemperatureQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TemperatureSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TemperatureSetting.java index e09880cd..a9d1f436 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TemperatureSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TemperatureSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TextQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TextQuestionExtendSetting.java index 9c37dd62..48c8f59d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TextQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TextQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TextSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TextSetting.java index 80c268b8..e24ad842 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TextSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TextSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimeQuestionExtendSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimeQuestionExtendSetting.java index 3a5327af..c6bb0bb0 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimeQuestionExtendSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimeQuestionExtendSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimeSetting.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimeSetting.java index c118c16b..9e581941 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimeSetting.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimeSetting.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimedRepeatInfo.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimedRepeatInfo.java index b8f9b83b..cd95a0b5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimedRepeatInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimedRepeatInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimedRepeatInfoDetail.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimedRepeatInfoDetail.java index 30c6fcc1..fcbf89bc 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimedRepeatInfoDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/TimedRepeatInfoDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UnfillUser.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UnfillUser.java index 45a594c8..e69b3586 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UnfillUser.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UnfillUser.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UpdateFormSettingRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UpdateFormSettingRequest.java index 6a006fb7..5c5629e8 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UpdateFormSettingRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UpdateFormSettingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UpdateSettingFormQuestionRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UpdateSettingFormQuestionRequest.java index d210e556..410db587 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UpdateSettingFormQuestionRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UpdateSettingFormQuestionRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UploadLimit.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UploadLimit.java index 5fa19f0e..22eaa27a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UploadLimit.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/form/UploadLimit.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedoc.form; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AbstractFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AbstractFilterCondition.java index 1030c2a2..7967b515 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AbstractFilterCondition.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AbstractFilterCondition.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.FilterOperator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddOrUpdateFieldsRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddOrUpdateFieldsRequest.java index fc2f4745..68a784b2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddOrUpdateFieldsRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddOrUpdateFieldsRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddSheetRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddSheetRequest.java index bf702a61..d7f3524c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddSheetRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddSheetRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddViewRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddViewRequest.java index a77270fd..a4632c2b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddViewRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AddViewRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SmartSheetViewType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentFieldProperty.java index 7e3fe2af..6dc2ef0a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentSheetField.java index a77daf3c..9caf1206 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AttachmentSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberFieldProperty.java index 7fad5ebd..1736b79b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.AutoNumberFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberRule.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberRule.java index ee34c75d..3568736f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberRule.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberRule.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.AutoNumberRuleType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberSheetField.java index 4bae2ec9..10a5d46b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/AutoNumberSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolFilterCondition.java index c4124296..f6ddeba1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolFilterCondition.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolFilterCondition.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.FilterOperator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolValue.java index 8576e01b..78634e5f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/BoolValue.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxFieldProperty.java index 41f8ff59..914e8d50 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxSheetField.java index 5460d6bf..b0005612 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CheckboxSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CreatedTimeSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CreatedTimeSheetField.java index d854ac24..b043186d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CreatedTimeSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CreatedTimeSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencyFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencyFieldProperty.java index 7100759c..468b79a5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencyFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencyFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.CurrencyType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencySheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencySheetField.java index bfac2cca..a3a9b16a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencySheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/CurrencySheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFieldProperty.java index 0c1325ad..482cba6c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.DateTimeFieldFormatter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFilterCondition.java index 894af70a..d3e4cb24 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFilterCondition.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeFilterCondition.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.FilterDateTimeType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeSheetField.java index 2c2c47c2..db876a46 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeValue.java index c6829a1e..9e77466f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DateTimeValue.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.FilterDateTimeType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelFieldsRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelFieldsRequest.java index 01ec142e..ef132851 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelFieldsRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelFieldsRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelSheetRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelSheetRequest.java index 8cea2139..20863e0e 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelSheetRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelSheetRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelViewRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelViewRequest.java index 50a13fa7..ae4c50b5 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelViewRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/DelViewRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/FilterSpec.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/FilterSpec.java index 290f1894..8f922756 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/FilterSpec.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/FilterSpec.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.Conjunction; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/GroupSpec.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/GroupSpec.java index 0d3b6492..dd28a4e6 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/GroupSpec.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/GroupSpec.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationFieldProperty.java index 0d40b74c..60a79c37 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationSheetField.java index bed134a3..4c9de92b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/LocationSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ModifiedTimeSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ModifiedTimeSheetField.java index 98cdcc83..d693ea93 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ModifiedTimeSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ModifiedTimeSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFieldProperty.java index a1d8a283..4424619f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.DecimalPlaces; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFilterCondition.java index 3322d4d8..3440ed5d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFilterCondition.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberFilterCondition.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.FilterOperator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberSheetField.java index 898aa6f2..b66af088 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberValue.java index 97371c9f..9975e1ee 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/NumberValue.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressFieldProperty.java index 05de7656..bf1b684c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.DecimalPlaces; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressSheetField.java index 0be99d5b..99ce8a29 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ProgressSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceFieldProperty.java index ff11077b..1051e239 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceSheetField.java index f0c75114..c71b1c0a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ReferenceSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldOption.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldOption.java index 4e52c324..4ad79aef 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldOption.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldOption.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SelectFieldStyle; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldProperty.java index f58f8839..1e3c9858 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectSheetField.java index 72e306c3..1b1bd1ee 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SelectSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetField.java index 953b11ed..c77e5e3b 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewDetail.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewDetail.java index 92facd69..df60ca11 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewDetail.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewDetail.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewInfo.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewInfo.java index dc2196ea..5628ca17 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewInfo.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetViewInfo.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SmartSheetViewType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SingleSelectSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SingleSelectSheetField.java index 67b79cdb..0f1d8f1c 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SingleSelectSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SingleSelectSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SmartSheetProperties.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SmartSheetProperties.java index ca24548e..0deb53c1 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SmartSheetProperties.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SmartSheetProperties.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortField.java index f19d7893..0ac2512f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortSpec.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortSpec.java index af3f5120..dd248b57 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortSpec.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SortSpec.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringFilterCondition.java index c2c4bb58..c0560668 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringFilterCondition.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringFilterCondition.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.FilterOperator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringValue.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringValue.java index 285e6ea1..4c8e5ff3 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringValue.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/StringValue.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/TimeFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/TimeFieldProperty.java index b09d7ecb..47e2630a 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/TimeFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/TimeFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.DateTimeFieldFormatter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateSheetRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateSheetRequest.java index 9373cbbb..9c215916 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateSheetRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateSheetRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateViewRequest.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateViewRequest.java index 1696c60b..e8a7c6a4 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateViewRequest.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UpdateViewRequest.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Getter; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlFieldProperty.java index ea53b78c..46816d07 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlSheetField.java index b0f22f41..5961c794 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UrlSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFieldProperty.java index 0eee929d..e2062bc2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFilterCondition.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFilterCondition.java index f50c3ee1..5cb79e67 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFilterCondition.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserFilterCondition.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.FilterOperator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserSheetField.java index a0c83dd4..90a21ebe 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/UserSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewDateRange.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewDateRange.java index 990396b6..c2996724 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewDateRange.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewDateRange.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import lombok.Data; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewProperty.java index 2cb86bc4..67cccfba 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/ViewProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupFieldProperty.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupFieldProperty.java index fcf4f018..274a9a9d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupFieldProperty.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupFieldProperty.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupSheetField.java b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupSheetField.java index d72007f4..1d3a14a2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupSheetField.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/WwGroupSheetField.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.domain.wedoc.smartsheet; import cn.felord.enumeration.SheetFieldType; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedrive/BufferSource.java b/wecom-objects/src/main/java/cn/felord/domain/wedrive/BufferSource.java index f4f11ff8..c7af490f 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedrive/BufferSource.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedrive/BufferSource.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedrive; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedrive/FileDownloadResponse.java b/wecom-objects/src/main/java/cn/felord/domain/wedrive/FileDownloadResponse.java index 051c7c77..82af35e2 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedrive/FileDownloadResponse.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedrive/FileDownloadResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedrive; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedrive/FileId.java b/wecom-objects/src/main/java/cn/felord/domain/wedrive/FileId.java index 154f4a32..cb4e3c57 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedrive/FileId.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedrive/FileId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedrive; diff --git a/wecom-objects/src/main/java/cn/felord/domain/wedrive/SelectedTicket.java b/wecom-objects/src/main/java/cn/felord/domain/wedrive/SelectedTicket.java index 471fb24d..5b2efe19 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/wedrive/SelectedTicket.java +++ b/wecom-objects/src/main/java/cn/felord/domain/wedrive/SelectedTicket.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.domain.wedrive; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AccountSignState.java b/wecom-objects/src/main/java/cn/felord/enumeration/AccountSignState.java index debd8b27..f8bc650d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AccountSignState.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AccountSignState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AddWays.java b/wecom-objects/src/main/java/cn/felord/enumeration/AddWays.java index 73e6b614..42519cfb 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AddWays.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AddWays.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AgentCustomizedPubStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/AgentCustomizedPubStatus.java index 952cca25..5bc40f4f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AgentCustomizedPubStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AgentCustomizedPubStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AgentMenuBtnType.java b/wecom-objects/src/main/java/cn/felord/enumeration/AgentMenuBtnType.java index c9d1a8d7..1af9c602 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AgentMenuBtnType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AgentMenuBtnType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AgreeStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/AgreeStatus.java index b7e45913..e0cd3526 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AgreeStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AgreeStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AnswerAttachType.java b/wecom-objects/src/main/java/cn/felord/enumeration/AnswerAttachType.java index 44bdb0de..899d8d97 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AnswerAttachType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AnswerAttachType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AnswerReplyItemType.java b/wecom-objects/src/main/java/cn/felord/enumeration/AnswerReplyItemType.java index 00e25397..2c5801ee 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AnswerReplyItemType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AnswerReplyItemType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AnswerStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/AnswerStatus.java index f2dc99b3..cc54548e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AnswerStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AnswerStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ApplyState.java b/wecom-objects/src/main/java/cn/felord/enumeration/ApplyState.java index 09ebe0ff..ee7c3d00 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ApplyState.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ApplyState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ApplymentState.java b/wecom-objects/src/main/java/cn/felord/enumeration/ApplymentState.java index 0225c250..4c5e90f4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ApplymentState.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ApplymentState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ApprovalCtrlType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ApprovalCtrlType.java index d246d943..8bad9869 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ApprovalCtrlType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ApprovalCtrlType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ApprovalNotifyType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ApprovalNotifyType.java index 28f9fe53..c5dfd1b9 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ApprovalNotifyType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ApprovalNotifyType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ApproverNodeMode.java b/wecom-objects/src/main/java/cn/felord/enumeration/ApproverNodeMode.java index 4856ea17..c36223fc 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ApproverNodeMode.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ApproverNodeMode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ApvRel.java b/wecom-objects/src/main/java/cn/felord/enumeration/ApvRel.java index e5ee465d..8797f2f6 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ApvRel.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ApvRel.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ApvlBankAccountType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ApvlBankAccountType.java index 9a863489..0a6e73f4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ApvlBankAccountType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ApvlBankAccountType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AttendanceType.java b/wecom-objects/src/main/java/cn/felord/enumeration/AttendanceType.java index 353ab9f1..45f08797 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AttendanceType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AttendanceType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AttendeeResponseStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/AttendeeResponseStatus.java index ac64bcf3..34408e4e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AttendeeResponseStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AttendeeResponseStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberFieldType.java b/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberFieldType.java index ecc02db6..c21a3d08 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberFieldType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberFieldType.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberRuleType.java b/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberRuleType.java index 6bbbbad0..ead7b0c1 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberRuleType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/AutoNumberRuleType.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/BankAccountType.java b/wecom-objects/src/main/java/cn/felord/enumeration/BankAccountType.java index 30c2bf0c..7fbba6b4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/BankAccountType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/BankAccountType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/BillType.java b/wecom-objects/src/main/java/cn/felord/enumeration/BillType.java index ee069494..ee2433e3 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/BillType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/BillType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/BookingStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/BookingStatus.java index 802cb446..8e6020b5 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/BookingStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/BookingStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/BoolEnum.java b/wecom-objects/src/main/java/cn/felord/enumeration/BoolEnum.java index 4a7ddf2e..4f0897f4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/BoolEnum.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/BoolEnum.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/BusinessCertType.java b/wecom-objects/src/main/java/cn/felord/enumeration/BusinessCertType.java index ce4f06d0..b2306cb1 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/BusinessCertType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/BusinessCertType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/BusinessType.java b/wecom-objects/src/main/java/cn/felord/enumeration/BusinessType.java index ed2bbc73..3d0668a8 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/BusinessType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/BusinessType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ButtonStyle.java b/wecom-objects/src/main/java/cn/felord/enumeration/ButtonStyle.java index 22b066ac..2334b60f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ButtonStyle.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ButtonStyle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ButtonType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ButtonType.java index 296163dd..8d165ef8 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ButtonType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ButtonType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CallReason.java b/wecom-objects/src/main/java/cn/felord/enumeration/CallReason.java index c29f9544..ce78b880 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CallReason.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CallReason.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CallType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CallType.java index 206a8ca4..fd444866 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CallType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CallType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CallbackChangeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CallbackChangeType.java index a2518937..a55cce6f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CallbackChangeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CallbackChangeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CallbackEvent.java b/wecom-objects/src/main/java/cn/felord/enumeration/CallbackEvent.java index 32766d21..def3228e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CallbackEvent.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CallbackEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CallbackRefundStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/CallbackRefundStatus.java index 33df9ddc..0ba36dc3 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CallbackRefundStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CallbackRefundStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CashType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CashType.java index c9996eb7..54a70415 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CashType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CashType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ChannelsSubType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ChannelsSubType.java index 73c062eb..12c0a780 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ChannelsSubType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ChannelsSubType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ChatGroupJoinScene.java b/wecom-objects/src/main/java/cn/felord/enumeration/ChatGroupJoinScene.java index 06443692..5dc188b0 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ChatGroupJoinScene.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ChatGroupJoinScene.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ChatGroupQuitScene.java b/wecom-objects/src/main/java/cn/felord/enumeration/ChatGroupQuitScene.java index 6e9cd4b8..351e3998 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ChatGroupQuitScene.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ChatGroupQuitScene.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ChatType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ChatType.java index 12316e76..82091ebb 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ChatType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ChatType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckboxMode.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckboxMode.java index 7fcbd67a..c294985e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckboxMode.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckboxMode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinClearType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinClearType.java index 15996f0e..5d5190b5 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinClearType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinClearType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinDataType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinDataType.java index 4979238c..73e91dd5 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinDataType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinDataType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinExceptionType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinExceptionType.java index 3aa6e6e7..e33d934d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinExceptionType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinExceptionType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinGroupType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinGroupType.java index 7329aaa9..fc55648a 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinGroupType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinGroupType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinOutRange.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinOutRange.java index 6ae2945c..408efd35 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinOutRange.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinOutRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinRecordType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinRecordType.java index c04b5cb6..fbdeeac8 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinRecordType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinRecordType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinSpTimeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinSpTimeType.java index 4646715e..bf3a1064 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinSpTimeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinSpTimeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinSpType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinSpType.java index cb0b4ecd..caea939f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinSpType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinSpType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinType.java index d104c308..cedc1261 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CheckinType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CheckinType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/Conjunction.java b/wecom-objects/src/main/java/cn/felord/enumeration/Conjunction.java index 80f9b1a4..51d82de8 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/Conjunction.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/Conjunction.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ContactCtrlMode.java b/wecom-objects/src/main/java/cn/felord/enumeration/ContactCtrlMode.java index 1707dfae..5ea16d50 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ContactCtrlMode.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ContactCtrlMode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ContactScene.java b/wecom-objects/src/main/java/cn/felord/enumeration/ContactScene.java index d11a9a83..0a82c87d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ContactScene.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ContactScene.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ContactType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ContactType.java index 070f9b84..ca591f16 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ContactType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ContactType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ContactUserTagType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ContactUserTagType.java index d15cd23b..c1600b7f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ContactUserTagType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ContactUserTagType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ContactUserType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ContactUserType.java index f364ff5f..e3a11e7b 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ContactUserType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ContactUserType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CorpGroupType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CorpGroupType.java index 40a6d741..c40b44d1 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CorpGroupType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CorpGroupType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CountLimitType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CountLimitType.java index f0c60c4e..76c7db3d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CountLimitType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CountLimitType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CreateType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CreateType.java index 0bc9f680..e522c3ae 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CreateType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CreateType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CurrencyType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CurrencyType.java index 7ad8ca3c..73ad81d6 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/CurrencyType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CurrencyType.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DateCtrlType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DateCtrlType.java index c6483e93..ca02077c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DateCtrlType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DateCtrlType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DateFormatType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DateFormatType.java index 35dbf741..0c5ff7e8 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DateFormatType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DateFormatType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DateRangeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DateRangeType.java index 73aa9859..16802d6f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DateRangeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DateRangeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DateTimeFieldFormatter.java b/wecom-objects/src/main/java/cn/felord/enumeration/DateTimeFieldFormatter.java index 4b3a3ad6..345953eb 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DateTimeFieldFormatter.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DateTimeFieldFormatter.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DayDataType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DayDataType.java index ad36666d..bb949ca3 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DayDataType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DayDataType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DayOfMonth.java b/wecom-objects/src/main/java/cn/felord/enumeration/DayOfMonth.java index 26492f8a..ea90528f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DayOfMonth.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DayOfMonth.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DecimalPlaces.java b/wecom-objects/src/main/java/cn/felord/enumeration/DecimalPlaces.java index 89af57e4..cc739d80 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DecimalPlaces.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DecimalPlaces.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DeviceImportStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/DeviceImportStatus.java index 4b1711bb..68137e0a 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DeviceImportStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DeviceImportStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DeviceSourceType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DeviceSourceType.java index 7de62a29..cb539d4b 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DeviceSourceType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DeviceSourceType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DeviceStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/DeviceStatus.java index 6b50a373..89cc39b2 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DeviceStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DeviceStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DeviceType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DeviceType.java index 53f57714..6384b43f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DeviceType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DeviceType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/Dimension.java b/wecom-objects/src/main/java/cn/felord/enumeration/Dimension.java index ba83b5e7..56a51dee 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/Dimension.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/Dimension.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DistanceType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DistanceType.java index a1922bc9..59a06154 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DistanceType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DistanceType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DocAuthListType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DocAuthListType.java index f2fcc797..1e088b1b 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DocAuthListType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DocAuthListType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DocAuthType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DocAuthType.java index 1af37890..9e8a9326 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DocAuthType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DocAuthType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DocType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DocType.java index fda3b7ed..27a506f4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DocType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DocType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DurationDateType.java b/wecom-objects/src/main/java/cn/felord/enumeration/DurationDateType.java index 4a0f8234..f2e23ff4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DurationDateType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DurationDateType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/DurationTimeScale.java b/wecom-objects/src/main/java/cn/felord/enumeration/DurationTimeScale.java index 9ae535de..73009cae 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/DurationTimeScale.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/DurationTimeScale.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/EmailType.java b/wecom-objects/src/main/java/cn/felord/enumeration/EmailType.java index b222533e..86e5527c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/EmailType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/EmailType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/EquipmentType.java b/wecom-objects/src/main/java/cn/felord/enumeration/EquipmentType.java index 1916d1fb..2557a32d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/EquipmentType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/EquipmentType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FailKfEventType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FailKfEventType.java index a31cc05b..5257bb67 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FailKfEventType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FailKfEventType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FieldGroupType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FieldGroupType.java index 6f53c934..3fb315e4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FieldGroupType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FieldGroupType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FieldType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FieldType.java index 08ba45d5..043eba50 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FieldType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FieldType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FillOutAuth.java b/wecom-objects/src/main/java/cn/felord/enumeration/FillOutAuth.java index b81b7270..b4ee654e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FillOutAuth.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FillOutAuth.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FilterDateTimeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FilterDateTimeType.java index 98bcddf7..5fc69962 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FilterDateTimeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FilterDateTimeType.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FilterOperator.java b/wecom-objects/src/main/java/cn/felord/enumeration/FilterOperator.java index 622937df..e580488d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FilterOperator.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FilterOperator.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FinanceType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FinanceType.java index ba27086b..b44a427f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FinanceType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FinanceType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FormCheckboxType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FormCheckboxType.java index b6763382..27a53aa6 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FormCheckboxType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FormCheckboxType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FormForkFinishType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FormForkFinishType.java index 6567d287..7e618c95 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FormForkFinishType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FormForkFinishType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FormItemReplyType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FormItemReplyType.java index da7408fa..9f5d0f7f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FormItemReplyType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FormItemReplyType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FormItemStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/FormItemStatus.java index f4151957..c3dbb068 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FormItemStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FormItemStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FormOperType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FormOperType.java index 317bbb6f..268799dd 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FormOperType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FormOperType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FormRepeatType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FormRepeatType.java index d833b48e..9caed3ee 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FormRepeatType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FormRepeatType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FormWeekFlag.java b/wecom-objects/src/main/java/cn/felord/enumeration/FormWeekFlag.java index 5a6453d8..151805c4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FormWeekFlag.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FormWeekFlag.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/FundFlowType.java b/wecom-objects/src/main/java/cn/felord/enumeration/FundFlowType.java index 4a6fa2b2..1fa5461d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/FundFlowType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/FundFlowType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/Gender.java b/wecom-objects/src/main/java/cn/felord/enumeration/Gender.java index b5998110..cc6c588d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/Gender.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/Gender.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatJoinScene.java b/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatJoinScene.java index f83a8314..e0d4aee4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatJoinScene.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatJoinScene.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatMemberType.java b/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatMemberType.java index dde95c74..fa1ab0b0 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatMemberType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatMemberType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatStatus.java index 1ba0fb59..7a547463 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/GroupChatStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/GroupMsgSendResultStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/GroupMsgSendResultStatus.java index f95252f0..ff4760b0 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/GroupMsgSendResultStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/GroupMsgSendResultStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/GroupOrderType.java b/wecom-objects/src/main/java/cn/felord/enumeration/GroupOrderType.java index 0e97fa17..6bde1080 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/GroupOrderType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/GroupOrderType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/HolidayType.java b/wecom-objects/src/main/java/cn/felord/enumeration/HolidayType.java index 0506e08c..e7655fa3 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/HolidayType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/HolidayType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/IdDocType.java b/wecom-objects/src/main/java/cn/felord/enumeration/IdDocType.java index 076d86af..39c2ad39 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/IdDocType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/IdDocType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/IdentityType.java b/wecom-objects/src/main/java/cn/felord/enumeration/IdentityType.java index b1663c54..50e8f7b1 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/IdentityType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/IdentityType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ImportStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/ImportStatus.java index 5c14240b..c032ffad 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ImportStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ImportStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/InterceptType.java b/wecom-objects/src/main/java/cn/felord/enumeration/InterceptType.java index 08ca1501..cb862ff7 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/InterceptType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/InterceptType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/JobStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/JobStatus.java index 1ddafe70..4c00b247 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/JobStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/JobStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/JournalReportType.java b/wecom-objects/src/main/java/cn/felord/enumeration/JournalReportType.java index 178a9aa8..1d290c83 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/JournalReportType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/JournalReportType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/KfEventType.java b/wecom-objects/src/main/java/cn/felord/enumeration/KfEventType.java index 16ba8833..5858baaf 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/KfEventType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/KfEventType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/KfMsgOrigin.java b/wecom-objects/src/main/java/cn/felord/enumeration/KfMsgOrigin.java index 8b2ad9fc..e72ec508 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/KfMsgOrigin.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/KfMsgOrigin.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/KfMsgType.java b/wecom-objects/src/main/java/cn/felord/enumeration/KfMsgType.java index 4ff4ac28..b46880dd 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/KfMsgType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/KfMsgType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceEventStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceEventStatus.java index f46ff034..eb5952f1 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceEventStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceEventStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceState.java b/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceState.java index 811e74e1..d9f357e4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceState.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceStatus.java index 87b25d56..c98eab55 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/KfServiceStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/KfServicerType.java b/wecom-objects/src/main/java/cn/felord/enumeration/KfServicerType.java index 1ec164ca..3b3f3cbb 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/KfServicerType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/KfServicerType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/KfStopType.java b/wecom-objects/src/main/java/cn/felord/enumeration/KfStopType.java index 63533a18..ba798ed9 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/KfStopType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/KfStopType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ListFilterType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ListFilterType.java index 13571bc6..c86f5bcf 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ListFilterType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ListFilterType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/LivingReplayStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/LivingReplayStatus.java index 1aebf63f..1d68ca7c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/LivingReplayStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/LivingReplayStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/LivingStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/LivingStatus.java index 5e3b3798..8154c205 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/LivingStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/LivingStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/LivingType.java b/wecom-objects/src/main/java/cn/felord/enumeration/LivingType.java index 4711e207..c05ccdc0 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/LivingType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/LivingType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/LocationType.java b/wecom-objects/src/main/java/cn/felord/enumeration/LocationType.java index 9608c7e9..b7094adf 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/LocationType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/LocationType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MarginType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MarginType.java index 85dbc3a5..73ef570e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MarginType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MarginType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MchBindStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/MchBindStatus.java index 440df929..f48b6d0e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MchBindStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MchBindStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MediaAttachmentType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MediaAttachmentType.java index f0795f29..95d96d60 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MediaAttachmentType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MediaAttachmentType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MediaJobStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/MediaJobStatus.java index 489a94d0..e1bb107e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MediaJobStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MediaJobStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MediaTypeEnum.java b/wecom-objects/src/main/java/cn/felord/enumeration/MediaTypeEnum.java index be796b22..9c92f50f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MediaTypeEnum.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MediaTypeEnum.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MessageSafe.java b/wecom-objects/src/main/java/cn/felord/enumeration/MessageSafe.java index eec8cb56..f2c521c7 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MessageSafe.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MessageSafe.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MiniApyBillType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MiniApyBillType.java index d8dad69e..b61a0c35 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MiniApyBillType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MiniApyBillType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MiniPayTradeState.java b/wecom-objects/src/main/java/cn/felord/enumeration/MiniPayTradeState.java index a58562c7..0e31d93b 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MiniPayTradeState.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MiniPayTradeState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MiniPayTradeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MiniPayTradeType.java index 2d9951db..5d1429b8 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MiniPayTradeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MiniPayTradeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MomentAttachmentType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MomentAttachmentType.java index 52b6c577..42250d85 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MomentAttachmentType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MomentAttachmentType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MomentInteractionType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MomentInteractionType.java index 4a9e8711..b3c4cd57 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MomentInteractionType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MomentInteractionType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MomentTaskPubStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/MomentTaskPubStatus.java index d2ec4110..2a7ee1a9 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MomentTaskPubStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MomentTaskPubStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MomentTaskStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/MomentTaskStatus.java index b00b311c..36a12512 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MomentTaskStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MomentTaskStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MomentVisibleType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MomentVisibleType.java index c8d1352d..92c0e111 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MomentVisibleType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MomentVisibleType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MsgAttachType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MsgAttachType.java index d0742915..7ffaeae5 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MsgAttachType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MsgAttachType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MsgAuditEditionType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MsgAuditEditionType.java index 3de560b9..26675024 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MsgAuditEditionType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MsgAuditEditionType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MsgMenuContentType.java b/wecom-objects/src/main/java/cn/felord/enumeration/MsgMenuContentType.java index 6fdfec74..98beee78 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MsgMenuContentType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MsgMenuContentType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MsgSendOptStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/MsgSendOptStatus.java index 2d14f56d..fb151861 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MsgSendOptStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MsgSendOptStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/MultiStyle.java b/wecom-objects/src/main/java/cn/felord/enumeration/MultiStyle.java index 1b64dc65..ed692c89 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/MultiStyle.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/MultiStyle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/NativeAgent.java b/wecom-objects/src/main/java/cn/felord/enumeration/NativeAgent.java index 22c172d5..ad5140cf 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/NativeAgent.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/NativeAgent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/NodeStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/NodeStatus.java index 0bb6426c..f7a915aa 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/NodeStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/NodeStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/NodeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/NodeType.java index 9e9b7864..2c343522 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/NodeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/NodeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/NotifyType.java b/wecom-objects/src/main/java/cn/felord/enumeration/NotifyType.java index 4218bf50..00ebeb11 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/NotifyType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/NotifyType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/OptSource.java b/wecom-objects/src/main/java/cn/felord/enumeration/OptSource.java index 50893162..db6bfaf1 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/OptSource.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/OptSource.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/OptType.java b/wecom-objects/src/main/java/cn/felord/enumeration/OptType.java index f1cf88ca..4fe3cfac 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/OptType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/OptType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/PayBusinessId.java b/wecom-objects/src/main/java/cn/felord/enumeration/PayBusinessId.java index 88a3b0c9..99e81f81 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/PayBusinessId.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/PayBusinessId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/PayCallbackEventType.java b/wecom-objects/src/main/java/cn/felord/enumeration/PayCallbackEventType.java index 1ac3c0d7..9c5ab19f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/PayCallbackEventType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/PayCallbackEventType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/PayContactType.java b/wecom-objects/src/main/java/cn/felord/enumeration/PayContactType.java index d38ab7ec..7398da0c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/PayContactType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/PayContactType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/PayOrgType.java b/wecom-objects/src/main/java/cn/felord/enumeration/PayOrgType.java index 9f79bf9d..7031d302 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/PayOrgType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/PayOrgType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/PaySignType.java b/wecom-objects/src/main/java/cn/felord/enumeration/PaySignType.java index ffec88ed..3132df1c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/PaySignType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/PaySignType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/PaymentType.java b/wecom-objects/src/main/java/cn/felord/enumeration/PaymentType.java index 0e991443..ef2a21bb 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/PaymentType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/PaymentType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ProcessNodeStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/ProcessNodeStatus.java index 1d735891..8d11db5c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ProcessNodeStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ProcessNodeStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ProcessNodeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ProcessNodeType.java index 670a2a30..749fcefa 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ProcessNodeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ProcessNodeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/PromotionScope.java b/wecom-objects/src/main/java/cn/felord/enumeration/PromotionScope.java index 1d8ab473..ed58d4b1 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/PromotionScope.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/PromotionScope.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/QualificationStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/QualificationStatus.java index 0e50ee7b..33b7d6c2 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/QualificationStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/QualificationStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RangeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/RangeType.java index 119e2569..ac2ff10a 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RangeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RangeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RealSignState.java b/wecom-objects/src/main/java/cn/felord/enumeration/RealSignState.java index c6239650..33963c2d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RealSignState.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RealSignState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RedPackScene.java b/wecom-objects/src/main/java/cn/felord/enumeration/RedPackScene.java index 4a92eec2..2fb17380 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RedPackScene.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RedPackScene.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RedPackStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/RedPackStatus.java index d387fb92..f3223916 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RedPackStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RedPackStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RefundChannel.java b/wecom-objects/src/main/java/cn/felord/enumeration/RefundChannel.java index 706cbe6a..4b85b240 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RefundChannel.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RefundChannel.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RefundResult.java b/wecom-objects/src/main/java/cn/felord/enumeration/RefundResult.java index c063a2ee..d65d77a2 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RefundResult.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RefundResult.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RefundStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/RefundStatus.java index 366f97b1..c4ce9c53 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RefundStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RefundStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ReimburseStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/ReimburseStatus.java index b0a01d28..452d09ae 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ReimburseStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ReimburseStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RejectSwitch.java b/wecom-objects/src/main/java/cn/felord/enumeration/RejectSwitch.java index 5ffb91e1..d4b6bb2e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RejectSwitch.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RejectSwitch.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RemindBeforeEventSecs.java b/wecom-objects/src/main/java/cn/felord/enumeration/RemindBeforeEventSecs.java index 2d79596e..3e8007ef 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RemindBeforeEventSecs.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RemindBeforeEventSecs.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RemindTimeDiff.java b/wecom-objects/src/main/java/cn/felord/enumeration/RemindTimeDiff.java index 00f93446..35550c1e 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RemindTimeDiff.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RemindTimeDiff.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/RepeatType.java b/wecom-objects/src/main/java/cn/felord/enumeration/RepeatType.java index 1668fa36..18155dda 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/RepeatType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/RepeatType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ScheduleOpMode.java b/wecom-objects/src/main/java/cn/felord/enumeration/ScheduleOpMode.java index 5a601713..d16d899d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ScheduleOpMode.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ScheduleOpMode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ScheduleStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/ScheduleStatus.java index decfa3d6..19088ecd 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ScheduleStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ScheduleStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SecurityDeviceType.java b/wecom-objects/src/main/java/cn/felord/enumeration/SecurityDeviceType.java index c5f93052..60585a6d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SecurityDeviceType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SecurityDeviceType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SelectFieldStyle.java b/wecom-objects/src/main/java/cn/felord/enumeration/SelectFieldStyle.java index a898214d..b7da0b55 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SelectFieldStyle.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SelectFieldStyle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SelectType.java b/wecom-objects/src/main/java/cn/felord/enumeration/SelectType.java index 89e986b0..b68171e0 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SelectType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SelectType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SemanticsRule.java b/wecom-objects/src/main/java/cn/felord/enumeration/SemanticsRule.java index dd5e9f35..c9acb5ee 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SemanticsRule.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SemanticsRule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SessionStatusChangeType.java b/wecom-objects/src/main/java/cn/felord/enumeration/SessionStatusChangeType.java index 1dc84b30..5ebfbd18 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SessionStatusChangeType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SessionStatusChangeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SharePermission.java b/wecom-objects/src/main/java/cn/felord/enumeration/SharePermission.java index 7cc5a040..9b5a2fbe 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SharePermission.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SharePermission.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SheetFieldType.java b/wecom-objects/src/main/java/cn/felord/enumeration/SheetFieldType.java index db7e688c..0498f38f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SheetFieldType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SheetFieldType.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SheetUpdateEvent.java b/wecom-objects/src/main/java/cn/felord/enumeration/SheetUpdateEvent.java index 373b420c..525a5034 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SheetUpdateEvent.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SheetUpdateEvent.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SingleStyle.java b/wecom-objects/src/main/java/cn/felord/enumeration/SingleStyle.java index a96f37a3..f3a955bf 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SingleStyle.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SingleStyle.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SliceState.java b/wecom-objects/src/main/java/cn/felord/enumeration/SliceState.java index 8ca32542..9d43ea47 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SliceState.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SliceState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SmartSheetViewType.java b/wecom-objects/src/main/java/cn/felord/enumeration/SmartSheetViewType.java index 650bf8a6..16987be0 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SmartSheetViewType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SmartSheetViewType.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.enumeration; /** diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SpOtStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/SpOtStatus.java index 26e5c43d..28d0e7d1 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SpOtStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SpOtStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/SpStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/SpStatus.java index 374ed661..34ea96c4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/SpStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/SpStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/StatusChangeEvent.java b/wecom-objects/src/main/java/cn/felord/enumeration/StatusChangeEvent.java index d21b5f0e..f6009714 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/StatusChangeEvent.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/StatusChangeEvent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TakeoverStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/TakeoverStatus.java index c15a3da0..e0d54454 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TakeoverStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TakeoverStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TemperatureUnitType.java b/wecom-objects/src/main/java/cn/felord/enumeration/TemperatureUnitType.java index 511c7a78..54fa882f 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TemperatureUnitType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TemperatureUnitType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TemplateCardType.java b/wecom-objects/src/main/java/cn/felord/enumeration/TemplateCardType.java index 6fc935a0..92601249 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TemplateCardType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TemplateCardType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TextValidationDetail.java b/wecom-objects/src/main/java/cn/felord/enumeration/TextValidationDetail.java index d1aa7e8a..8f310210 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TextValidationDetail.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TextValidationDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TextValidationType.java b/wecom-objects/src/main/java/cn/felord/enumeration/TextValidationType.java index d0b1cee1..707d5515 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TextValidationType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TextValidationType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TimeFormatType.java b/wecom-objects/src/main/java/cn/felord/enumeration/TimeFormatType.java index 8797c262..e413992d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TimeFormatType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TimeFormatType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TipsCtrlType.java b/wecom-objects/src/main/java/cn/felord/enumeration/TipsCtrlType.java index 708b9e11..9c926b39 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TipsCtrlType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TipsCtrlType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TradeState.java b/wecom-objects/src/main/java/cn/felord/enumeration/TradeState.java index d31222fa..c1b012c8 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TradeState.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TradeState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TransPocketCheck.java b/wecom-objects/src/main/java/cn/felord/enumeration/TransPocketCheck.java index 3e8df98f..e177b07b 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TransPocketCheck.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TransPocketCheck.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TransPocketStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/TransPocketStatus.java index 66936f2f..e0b1f5ca 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TransPocketStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TransPocketStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/TransactionType.java b/wecom-objects/src/main/java/cn/felord/enumeration/TransactionType.java index 3c547ed9..f54e08ff 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/TransactionType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/TransactionType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/UpdateDetailType.java b/wecom-objects/src/main/java/cn/felord/enumeration/UpdateDetailType.java index 1d93eb23..bf901afb 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/UpdateDetailType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/UpdateDetailType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/UseTemplateApprover.java b/wecom-objects/src/main/java/cn/felord/enumeration/UseTemplateApprover.java index 50e49765..09e6d017 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/UseTemplateApprover.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/UseTemplateApprover.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/UseType.java b/wecom-objects/src/main/java/cn/felord/enumeration/UseType.java index 0f965df6..49eb75e2 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/UseType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/UseType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/UserQrcodeSize.java b/wecom-objects/src/main/java/cn/felord/enumeration/UserQrcodeSize.java index 6953a497..c3dd416d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/UserQrcodeSize.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/UserQrcodeSize.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/UserStatus.java b/wecom-objects/src/main/java/cn/felord/enumeration/UserStatus.java index b73bba18..8255d04c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/UserStatus.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/UserStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ValueResult.java b/wecom-objects/src/main/java/cn/felord/enumeration/ValueResult.java index 3d4cf9c5..fa1217ba 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ValueResult.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ValueResult.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/ValueType.java b/wecom-objects/src/main/java/cn/felord/enumeration/ValueType.java index f37150e8..afe043b0 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/ValueType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/ValueType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/VoiceFormat.java b/wecom-objects/src/main/java/cn/felord/enumeration/VoiceFormat.java index ef58d57d..9917be37 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/VoiceFormat.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/VoiceFormat.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/WebViewHeight.java b/wecom-objects/src/main/java/cn/felord/enumeration/WebViewHeight.java index 78928256..4032d10c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/WebViewHeight.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/WebViewHeight.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/WechatChannelScene.java b/wecom-objects/src/main/java/cn/felord/enumeration/WechatChannelScene.java index 654649ba..dee176f2 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/WechatChannelScene.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/WechatChannelScene.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/WechatChannelSource.java b/wecom-objects/src/main/java/cn/felord/enumeration/WechatChannelSource.java index 50198842..d056fb9c 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/WechatChannelSource.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/WechatChannelSource.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/WeekDay.java b/wecom-objects/src/main/java/cn/felord/enumeration/WeekDay.java index bb02eb7a..3fb69e8d 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/WeekDay.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/WeekDay.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/WelcomeNotifyStrategy.java b/wecom-objects/src/main/java/cn/felord/enumeration/WelcomeNotifyStrategy.java index 3e3dddbf..64a3a30a 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/WelcomeNotifyStrategy.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/WelcomeNotifyStrategy.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/WorkbenchType.java b/wecom-objects/src/main/java/cn/felord/enumeration/WorkbenchType.java index deed4d42..8e5f7276 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/WorkbenchType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/WorkbenchType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/WwMsgType.java b/wecom-objects/src/main/java/cn/felord/enumeration/WwMsgType.java index 119e413b..4df6e6d4 100644 --- a/wecom-objects/src/main/java/cn/felord/enumeration/WwMsgType.java +++ b/wecom-objects/src/main/java/cn/felord/enumeration/WwMsgType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.enumeration; diff --git a/wecom-objects/src/main/java/cn/felord/json/FilterConditionDeserializer.java b/wecom-objects/src/main/java/cn/felord/json/FilterConditionDeserializer.java index 2dbfc37f..4c841d8b 100644 --- a/wecom-objects/src/main/java/cn/felord/json/FilterConditionDeserializer.java +++ b/wecom-objects/src/main/java/cn/felord/json/FilterConditionDeserializer.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.json; import cn.felord.domain.wedoc.smartsheet.AbstractFilterCondition; diff --git a/wecom-objects/src/main/java/cn/felord/json/QuestionExtendSettingDeserializer.java b/wecom-objects/src/main/java/cn/felord/json/QuestionExtendSettingDeserializer.java index 50c3ec1d..6a6b1f3b 100644 --- a/wecom-objects/src/main/java/cn/felord/json/QuestionExtendSettingDeserializer.java +++ b/wecom-objects/src/main/java/cn/felord/json/QuestionExtendSettingDeserializer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.json; diff --git a/wecom-objects/src/main/java/cn/felord/json/TmpControlDeserializer.java b/wecom-objects/src/main/java/cn/felord/json/TmpControlDeserializer.java index 14fd6997..8b7b6aa3 100644 --- a/wecom-objects/src/main/java/cn/felord/json/TmpControlDeserializer.java +++ b/wecom-objects/src/main/java/cn/felord/json/TmpControlDeserializer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.json; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/AbstractTokenApi.java b/wecom-objects/src/main/java/cn/felord/retrofit/AbstractTokenApi.java index 2e40c570..8937febe 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/AbstractTokenApi.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/AbstractTokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/AccessTokenApi.java b/wecom-objects/src/main/java/cn/felord/retrofit/AccessTokenApi.java index c96fb2db..bb5594d7 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/AccessTokenApi.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/AccessTokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/DownStreamAccessTokenApi.java b/wecom-objects/src/main/java/cn/felord/retrofit/DownStreamAccessTokenApi.java index e7d1db31..58637d75 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/DownStreamAccessTokenApi.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/DownStreamAccessTokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/DownStreamTokenApi.java b/wecom-objects/src/main/java/cn/felord/retrofit/DownStreamTokenApi.java index 58bca1d8..b3238cf3 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/DownStreamTokenApi.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/DownStreamTokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/ResponseBodyCallAdapterFactory.java b/wecom-objects/src/main/java/cn/felord/retrofit/ResponseBodyCallAdapterFactory.java index 553ed883..a9183e02 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/ResponseBodyCallAdapterFactory.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/ResponseBodyCallAdapterFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/RetrofitAccessTokenApi.java b/wecom-objects/src/main/java/cn/felord/retrofit/RetrofitAccessTokenApi.java index 770a3149..aca3b1b9 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/RetrofitAccessTokenApi.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/RetrofitAccessTokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/TokenApi.java b/wecom-objects/src/main/java/cn/felord/retrofit/TokenApi.java index e8eceefd..2938bdd4 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/TokenApi.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/TokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/TokenInterceptor.java b/wecom-objects/src/main/java/cn/felord/retrofit/TokenInterceptor.java index 9521022e..68d30d43 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/TokenInterceptor.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/TokenInterceptor.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/retrofit/WorkWechatRetrofitFactory.java b/wecom-objects/src/main/java/cn/felord/retrofit/WorkWechatRetrofitFactory.java index a75979f8..f0c903e7 100644 --- a/wecom-objects/src/main/java/cn/felord/retrofit/WorkWechatRetrofitFactory.java +++ b/wecom-objects/src/main/java/cn/felord/retrofit/WorkWechatRetrofitFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.retrofit; diff --git a/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackChangeTypeConverter.java b/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackChangeTypeConverter.java index bf78631b..11629dc7 100644 --- a/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackChangeTypeConverter.java +++ b/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackChangeTypeConverter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml.convert; diff --git a/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackEventConverter.java b/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackEventConverter.java index c8dacb46..187907fe 100644 --- a/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackEventConverter.java +++ b/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackEventConverter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml.convert; diff --git a/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackNumberEnum.java b/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackNumberEnum.java index 15b16222..8fa145c7 100644 --- a/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackNumberEnum.java +++ b/wecom-objects/src/main/java/cn/felord/xml/convert/CallbackNumberEnum.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml.convert; diff --git a/wecom-objects/src/main/java/cn/felord/xml/convert/NumberEnumConverter.java b/wecom-objects/src/main/java/cn/felord/xml/convert/NumberEnumConverter.java index fa57bf6d..10b36c40 100644 --- a/wecom-objects/src/main/java/cn/felord/xml/convert/NumberEnumConverter.java +++ b/wecom-objects/src/main/java/cn/felord/xml/convert/NumberEnumConverter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml.convert; diff --git a/wecom-objects/src/main/java/cn/felord/xml/convert/PayCallbackEventTypeConverter.java b/wecom-objects/src/main/java/cn/felord/xml/convert/PayCallbackEventTypeConverter.java index 9d7fefa6..5667cbd6 100644 --- a/wecom-objects/src/main/java/cn/felord/xml/convert/PayCallbackEventTypeConverter.java +++ b/wecom-objects/src/main/java/cn/felord/xml/convert/PayCallbackEventTypeConverter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml.convert; diff --git a/wecom-objects/src/main/java/cn/felord/xml/convert/UpdateDetailTypeConverter.java b/wecom-objects/src/main/java/cn/felord/xml/convert/UpdateDetailTypeConverter.java index 2ba8d485..8c2cde07 100644 --- a/wecom-objects/src/main/java/cn/felord/xml/convert/UpdateDetailTypeConverter.java +++ b/wecom-objects/src/main/java/cn/felord/xml/convert/UpdateDetailTypeConverter.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.xml.convert; diff --git a/wecom-sdk/pom.xml b/wecom-sdk/pom.xml index 79981111..22aa89ab 100644 --- a/wecom-sdk/pom.xml +++ b/wecom-sdk/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/wecom-sdk/src/main/java/cn/felord/api/AgentApi.java b/wecom-sdk/src/main/java/cn/felord/api/AgentApi.java index 1ffca4a2..696e27a9 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/AgentApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/AgentApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/AgentManagerApi.java b/wecom-sdk/src/main/java/cn/felord/api/AgentManagerApi.java index 3028b8e3..7ccbe0c7 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/AgentManagerApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/AgentManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/AgentMessageApi.java b/wecom-sdk/src/main/java/cn/felord/api/AgentMessageApi.java index 16492ec5..c8ca3f4f 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/AgentMessageApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/AgentMessageApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ApprovalApi.java b/wecom-sdk/src/main/java/cn/felord/api/ApprovalApi.java index 06ce9c1f..7132e910 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ApprovalApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ApprovalApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/AsynchronousBatchImportApi.java b/wecom-sdk/src/main/java/cn/felord/api/AsynchronousBatchImportApi.java index 71e4d597..9e911a3a 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/AsynchronousBatchImportApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/AsynchronousBatchImportApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/AuthApi.java b/wecom-sdk/src/main/java/cn/felord/api/AuthApi.java index b3c583cd..066ee6af 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/AuthApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/AuthApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/CalendarApi.java b/wecom-sdk/src/main/java/cn/felord/api/CalendarApi.java index a121de08..7d0ed75a 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/CalendarApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/CalendarApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/CallCenterManager.java b/wecom-sdk/src/main/java/cn/felord/api/CallCenterManager.java index d104995f..77b33d25 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/CallCenterManager.java +++ b/wecom-sdk/src/main/java/cn/felord/api/CallCenterManager.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ChainRuleApi.java b/wecom-sdk/src/main/java/cn/felord/api/ChainRuleApi.java index b5f684c3..db3e43ce 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ChainRuleApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ChainRuleApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ChatInterceptRuleApi.java b/wecom-sdk/src/main/java/cn/felord/api/ChatInterceptRuleApi.java index 49cc734c..e6743b55 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ChatInterceptRuleApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ChatInterceptRuleApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/CheckinApi.java b/wecom-sdk/src/main/java/cn/felord/api/CheckinApi.java index c07932db..ff0701ba 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/CheckinApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/CheckinApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ContactBookManager.java b/wecom-sdk/src/main/java/cn/felord/api/ContactBookManager.java index ae3055ae..4d774ff9 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ContactBookManager.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ContactBookManager.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ContactMeWayApi.java b/wecom-sdk/src/main/java/cn/felord/api/ContactMeWayApi.java index 84b093e5..a2c3239e 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ContactMeWayApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ContactMeWayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/CorpGroupApi.java b/wecom-sdk/src/main/java/cn/felord/api/CorpGroupApi.java index ae706589..3755b0e8 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/CorpGroupApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/CorpGroupApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/CorpTagApi.java b/wecom-sdk/src/main/java/cn/felord/api/CorpTagApi.java index 475eb625..9f564c7e 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/CorpTagApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/CorpTagApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/CustomerAcquisitionApi.java b/wecom-sdk/src/main/java/cn/felord/api/CustomerAcquisitionApi.java index f50134eb..cd237101 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/CustomerAcquisitionApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/CustomerAcquisitionApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/DepartmentApi.java b/wecom-sdk/src/main/java/cn/felord/api/DepartmentApi.java index e00081ad..86f2f36e 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/DepartmentApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/DepartmentApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/DialApi.java b/wecom-sdk/src/main/java/cn/felord/api/DialApi.java index a2cfcb8a..93349cfa 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/DialApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/DialApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/DocApi.java b/wecom-sdk/src/main/java/cn/felord/api/DocApi.java index 652caac7..bee2bcf3 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/DocApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/DocApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/DomainApi.java b/wecom-sdk/src/main/java/cn/felord/api/DomainApi.java index d528fb27..4f5fc757 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/DomainApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/DomainApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/DownStreamApi.java b/wecom-sdk/src/main/java/cn/felord/api/DownStreamApi.java index 0c929d8f..b15cbee7 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/DownStreamApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/DownStreamApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ExternalContactManager.java b/wecom-sdk/src/main/java/cn/felord/api/ExternalContactManager.java index 98606b75..aefa49ad 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ExternalContactManager.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ExternalContactManager.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ExternalContactUserApi.java b/wecom-sdk/src/main/java/cn/felord/api/ExternalContactUserApi.java index 1b6ba94a..3d01f803 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ExternalContactUserApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ExternalContactUserApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ExternalCorPayApi.java b/wecom-sdk/src/main/java/cn/felord/api/ExternalCorPayApi.java index a58d9cf6..e543b608 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ExternalCorPayApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ExternalCorPayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ExternalPayAccountApi.java b/wecom-sdk/src/main/java/cn/felord/api/ExternalPayAccountApi.java index 005e96fd..05cd869a 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ExternalPayAccountApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ExternalPayAccountApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ExternalStatisticApi.java b/wecom-sdk/src/main/java/cn/felord/api/ExternalStatisticApi.java index 618547a3..3fc4a7ed 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ExternalStatisticApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ExternalStatisticApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; @@ -67,4 +67,4 @@ public interface ExternalStatisticApi { */ @POST("externalcontact/groupchat/statistic_group_by_day") GroupChatDataResponse getGroupChatData(@Body GroupChatDayDataRequest request) throws WeComException; -} \ No newline at end of file +} diff --git a/wecom-sdk/src/main/java/cn/felord/api/FileManagerApi.java b/wecom-sdk/src/main/java/cn/felord/api/FileManagerApi.java index aaec6474..3ad14a68 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/FileManagerApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/FileManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/FormApi.java b/wecom-sdk/src/main/java/cn/felord/api/FormApi.java index 9379ba61..6fb420a2 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/FormApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/FormApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/GroupChatApi.java b/wecom-sdk/src/main/java/cn/felord/api/GroupChatApi.java index 73b3764b..3b462e2f 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/GroupChatApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/GroupChatApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/GroupMessageApi.java b/wecom-sdk/src/main/java/cn/felord/api/GroupMessageApi.java index 2bbc3563..8f8ce53f 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/GroupMessageApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/GroupMessageApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/InternalAgentManagerApi.java b/wecom-sdk/src/main/java/cn/felord/api/InternalAgentManagerApi.java index 432161ed..bfcdc900 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/InternalAgentManagerApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/InternalAgentManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/InternalAgentMessageApi.java b/wecom-sdk/src/main/java/cn/felord/api/InternalAgentMessageApi.java index b5886e5c..6e97e73c 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/InternalAgentMessageApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/InternalAgentMessageApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/InternalCorPayApi.java b/wecom-sdk/src/main/java/cn/felord/api/InternalCorPayApi.java index db003324..64a9f908 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/InternalCorPayApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/InternalCorPayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/InternalFileManagerApi.java b/wecom-sdk/src/main/java/cn/felord/api/InternalFileManagerApi.java index 9a3b72df..b6e64083 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/InternalFileManagerApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/InternalFileManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/InternalMediaApi.java b/wecom-sdk/src/main/java/cn/felord/api/InternalMediaApi.java index bfd15c3f..f381decc 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/InternalMediaApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/InternalMediaApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/InternalWebhookApi.java b/wecom-sdk/src/main/java/cn/felord/api/InternalWebhookApi.java index f28518cc..1c145f1c 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/InternalWebhookApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/InternalWebhookApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/InvoiceApi.java b/wecom-sdk/src/main/java/cn/felord/api/InvoiceApi.java index 32cef796..25d6fb99 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/InvoiceApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/InvoiceApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/JournalApi.java b/wecom-sdk/src/main/java/cn/felord/api/JournalApi.java index 910bba09..f78c54d5 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/JournalApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/JournalApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/JsApi.java b/wecom-sdk/src/main/java/cn/felord/api/JsApi.java index 89e37b79..8565a214 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/JsApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/JsApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/JsSdkApi.java b/wecom-sdk/src/main/java/cn/felord/api/JsSdkApi.java index 4551d711..b3659664 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/JsSdkApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/JsSdkApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/KfAccountApi.java b/wecom-sdk/src/main/java/cn/felord/api/KfAccountApi.java index 886a181f..5b1db9df 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/KfAccountApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/KfAccountApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/KfKnowledgeApi.java b/wecom-sdk/src/main/java/cn/felord/api/KfKnowledgeApi.java index facfa28a..9367d207 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/KfKnowledgeApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/KfKnowledgeApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/KfServicerApi.java b/wecom-sdk/src/main/java/cn/felord/api/KfServicerApi.java index 419c33f0..bfc705e8 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/KfServicerApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/KfServicerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/KfSessionApi.java b/wecom-sdk/src/main/java/cn/felord/api/KfSessionApi.java index 9e8138f1..4cb0633e 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/KfSessionApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/KfSessionApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/KfStatisticApi.java b/wecom-sdk/src/main/java/cn/felord/api/KfStatisticApi.java index bac0fe0d..12c7adef 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/KfStatisticApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/KfStatisticApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/KfUpgradeApi.java b/wecom-sdk/src/main/java/cn/felord/api/KfUpgradeApi.java index 63498937..9d248ed2 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/KfUpgradeApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/KfUpgradeApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/LinkedCorpApi.java b/wecom-sdk/src/main/java/cn/felord/api/LinkedCorpApi.java index 909962a9..3d96928a 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/LinkedCorpApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/LinkedCorpApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/LivingApi.java b/wecom-sdk/src/main/java/cn/felord/api/LivingApi.java index 20f83eb3..a719c154 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/LivingApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/LivingApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/MediaApi.java b/wecom-sdk/src/main/java/cn/felord/api/MediaApi.java index 08263221..d5c5da7b 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/MediaApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/MediaApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/MeetingRoomApi.java b/wecom-sdk/src/main/java/cn/felord/api/MeetingRoomApi.java index d0b43bf0..0f0745fa 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/MeetingRoomApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/MeetingRoomApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/MiniAppPayApi.java b/wecom-sdk/src/main/java/cn/felord/api/MiniAppPayApi.java index 18bc709f..b440b9d2 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/MiniAppPayApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/MiniAppPayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/MmPayMktTransfersApi.java b/wecom-sdk/src/main/java/cn/felord/api/MmPayMktTransfersApi.java index 10eb599c..f4f75301 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/MmPayMktTransfersApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/MmPayMktTransfersApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/MomentApi.java b/wecom-sdk/src/main/java/cn/felord/api/MomentApi.java index 08366ba1..da72e806 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/MomentApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/MomentApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/MsgAuditApi.java b/wecom-sdk/src/main/java/cn/felord/api/MsgAuditApi.java index 0ea75bac..a9227d65 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/MsgAuditApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/MsgAuditApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/OffTransferApi.java b/wecom-sdk/src/main/java/cn/felord/api/OffTransferApi.java index 0f1bd36a..e3e855da 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/OffTransferApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/OffTransferApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/OnTransferApi.java b/wecom-sdk/src/main/java/cn/felord/api/OnTransferApi.java index 44011061..d73f42d0 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/OnTransferApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/OnTransferApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/PayApi.java b/wecom-sdk/src/main/java/cn/felord/api/PayApi.java index 1a6ccc2f..67655c7f 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/PayApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/PayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ProductAlbumApi.java b/wecom-sdk/src/main/java/cn/felord/api/ProductAlbumApi.java index 61e6d673..e7b8e13b 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ProductAlbumApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ProductAlbumApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/ScheduleApi.java b/wecom-sdk/src/main/java/cn/felord/api/ScheduleApi.java index 4f09fba1..93893353 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/ScheduleApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/ScheduleApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/SecurityApi.java b/wecom-sdk/src/main/java/cn/felord/api/SecurityApi.java index 9f5289ed..5e983b15 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/SecurityApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/SecurityApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/SmartSheetApi.java b/wecom-sdk/src/main/java/cn/felord/api/SmartSheetApi.java index 8ef0c50a..12ae030c 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/SmartSheetApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/SmartSheetApi.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package cn.felord.api; import cn.felord.domain.GenericResponse; diff --git a/wecom-sdk/src/main/java/cn/felord/api/StaffManagerApi.java b/wecom-sdk/src/main/java/cn/felord/api/StaffManagerApi.java index e47d2c11..3a7cbcc6 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/StaffManagerApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/StaffManagerApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/TagApi.java b/wecom-sdk/src/main/java/cn/felord/api/TagApi.java index 28fc76f5..d103659a 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/TagApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/TagApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/UpStreamApi.java b/wecom-sdk/src/main/java/cn/felord/api/UpStreamApi.java index f51b8727..31fb5c06 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/UpStreamApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/UpStreamApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/UrgentCallApi.java b/wecom-sdk/src/main/java/cn/felord/api/UrgentCallApi.java index c1ccf582..fdac33b0 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/UrgentCallApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/UrgentCallApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/UserApi.java b/wecom-sdk/src/main/java/cn/felord/api/UserApi.java index a7ce9c29..bbe8e8cd 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/UserApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/UserApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/WeDriveApi.java b/wecom-sdk/src/main/java/cn/felord/api/WeDriveApi.java index 235da672..508ea00e 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/WeDriveApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/WeDriveApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/WebhookApi.java b/wecom-sdk/src/main/java/cn/felord/api/WebhookApi.java index adc689cb..8a0f1ace 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/WebhookApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/WebhookApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/WedocApi.java b/wecom-sdk/src/main/java/cn/felord/api/WedocApi.java index 5382569c..18883716 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/WedocApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/WedocApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/WorkWeChatApi.java b/wecom-sdk/src/main/java/cn/felord/api/WorkWeChatApi.java index 42bb775d..59e25bcf 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/WorkWeChatApi.java +++ b/wecom-sdk/src/main/java/cn/felord/api/WorkWeChatApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wecom-sdk/src/main/java/cn/felord/api/WorkWeChatApiClient.java b/wecom-sdk/src/main/java/cn/felord/api/WorkWeChatApiClient.java index ea5debe8..819043b5 100644 --- a/wecom-sdk/src/main/java/cn/felord/api/WorkWeChatApiClient.java +++ b/wecom-sdk/src/main/java/cn/felord/api/WorkWeChatApiClient.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.api; diff --git a/wemp-objects/pom.xml b/wemp-objects/pom.xml index b8ba4cae..8a198dd8 100644 --- a/wemp-objects/pom.xml +++ b/wemp-objects/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/wemp-objects/src/main/java/cn/felord/mp/MpApp.java b/wemp-objects/src/main/java/cn/felord/mp/MpApp.java index 4a58de40..67a3b704 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/MpApp.java +++ b/wemp-objects/src/main/java/cn/felord/mp/MpApp.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp; diff --git a/wemp-objects/src/main/java/cn/felord/mp/WeMpCacheable.java b/wemp-objects/src/main/java/cn/felord/mp/WeMpCacheable.java index 86a9caab..6772ca88 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/WeMpCacheable.java +++ b/wemp-objects/src/main/java/cn/felord/mp/WeMpCacheable.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp; diff --git a/wemp-objects/src/main/java/cn/felord/mp/WeMpException.java b/wemp-objects/src/main/java/cn/felord/mp/WeMpException.java index db81ddde..33fc81e8 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/WeMpException.java +++ b/wemp-objects/src/main/java/cn/felord/mp/WeMpException.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp; diff --git a/wemp-objects/src/main/java/cn/felord/mp/WeMpTicketCacheable.java b/wemp-objects/src/main/java/cn/felord/mp/WeMpTicketCacheable.java index 0c3c6b7b..0518bcff 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/WeMpTicketCacheable.java +++ b/wemp-objects/src/main/java/cn/felord/mp/WeMpTicketCacheable.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp; diff --git a/wemp-objects/src/main/java/cn/felord/mp/WeMpTokenCacheable.java b/wemp-objects/src/main/java/cn/felord/mp/WeMpTokenCacheable.java index 9df3494a..15b6c273 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/WeMpTokenCacheable.java +++ b/wemp-objects/src/main/java/cn/felord/mp/WeMpTokenCacheable.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/GenericMpResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/GenericMpResponse.java index 3c2c4d92..64697728 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/GenericMpResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/GenericMpResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/MpResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/MpResponse.java index d79a6d19..9fa07171 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/MpResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/MpResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbandonCardCodeRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbandonCardCodeRequest.java index 36c03560..b6bb11c0 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbandonCardCodeRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbandonCardCodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbstractCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbstractCard.java index fd6ed877..05b4cc7c 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbstractCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbstractCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbstractInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbstractInfo.java index 0f7b2f89..6f6fc29a 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbstractInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/AbstractInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/ActivateForm.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/ActivateForm.java index 9bcddf15..a30c87b3 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/ActivateForm.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/ActivateForm.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -66,4 +66,4 @@ public ActivateForm commonFieldIdList(List commonFieldIdList) { this.commonFieldIdList = commonFieldIdList; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/AdvancedInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/AdvancedInfo.java index 09f1eb7e..6019afed 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/AdvancedInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/AdvancedInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -138,4 +138,4 @@ public AdvancedInfo businessService(Set businessService) { this.businessService = businessService; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/BatchCardRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/BatchCardRequest.java index 6954fdc2..63c2fbd1 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/BatchCardRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/BatchCardRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -58,4 +58,4 @@ public BatchCardRequest(int offset, int count, List statusList) { this.count = count; this.statusList = statusList; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/BatchCardResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/BatchCardResponse.java index 52170df3..583d2372 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/BatchCardResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/BatchCardResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -32,4 +32,4 @@ public class BatchCardResponse extends MpResponse { private Integer totalNum; private List cardIdList; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/BindOldCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/BindOldCard.java index ddb0678b..0066c8bf 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/BindOldCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/BindOldCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -21,4 +21,4 @@ public class BindOldCard { private String name; private String url; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/BonusRule.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/BonusRule.java index b89b05b4..a8e17b75 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/BonusRule.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/BonusRule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -182,4 +182,4 @@ public BonusRule leastMoneyToUseBonus(Integer leastMoneyToUseBonus) { this.leastMoneyToUseBonus = leastMoneyToUseBonus; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardBiz.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardBiz.java index 1035ce25..6d714980 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardBiz.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardBiz.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -71,4 +71,4 @@ public class CardBiz { * 过期人数 */ private Integer expireUser; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardBizRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardBizRequest.java index e7558ec0..dc424688 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardBizRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardBizRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -33,4 +33,4 @@ public class CardBizRequest { private final LocalDate beginDate; private final LocalDate endDate; private final CondSource condSource; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardDataList.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardDataList.java index cb57685e..58d19f4b 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardDataList.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardDataList.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardId.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardId.java index 9bf9d0a3..8abd4a44 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardId.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardIdInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardIdInfo.java index c4f42738..c05e2474 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardIdInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardIdInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -25,4 +25,4 @@ public class CardIdInfo { private String thumbUrl; private String cardId; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardInfoRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardInfoRequest.java index fe490d30..215ddff8 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardInfoRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardInfoRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardLandingRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardLandingRequest.java index 22f9920b..e429e3ee 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardLandingRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardLandingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -30,4 +30,4 @@ public class CardLandingRequest { private String banner; private List cardList; private String scene; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardLandingResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardLandingResponse.java index ba709465..97584df4 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardLandingResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardLandingResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -29,4 +29,4 @@ public class CardLandingResponse extends MpResponse { private String url; private String pageId; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardListResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardListResponse.java index 4745b171..f76b5d3f 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardListResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardListResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardPaySettingRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardPaySettingRequest.java index 8fceebba..e9efe3d1 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardPaySettingRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardPaySettingRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -25,4 +25,4 @@ public class CardPaySettingRequest { private final Boolean isOpen; private final String cardId; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardQrcodeRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardQrcodeRequest.java index 25b2ac44..d33d5936 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardQrcodeRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardQrcodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardQrcodeResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardQrcodeResponse.java index 27e05e69..f1f4bf8d 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardQrcodeResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardQrcodeResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -30,4 +30,4 @@ public class CardQrcodeResponse extends MpResponse { private String showQrcodeUrl; private Integer expireSeconds; private String url; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardRequest.java index a44a6922..25ac4c2c 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -24,4 +24,4 @@ @Data public class CardRequest { private final C card; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUpdateUserRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUpdateUserRequest.java index 89e6acae..b0ec52d1 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUpdateUserRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUpdateUserRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -167,4 +167,4 @@ public CardUpdateUserRequest notifyOptional(NotifyOptional notifyOptional) { this.notifyOptional = notifyOptional; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUpdateUserResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUpdateUserResponse.java index dd2c6cba..6db6df9b 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUpdateUserResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUpdateUserResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -29,4 +29,4 @@ public class CardUpdateUserResponse extends MpResponse { private String openid; private Long resultBalance; private Long resultBonus; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUserInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUserInfo.java index a3f4a1d5..e0485dbb 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUserInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUserInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -24,4 +24,4 @@ public class CardUserInfo { private List customFieldList; private List commonFieldList; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUserInfoResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUserInfoResponse.java index 8b28e922..63ca1c83 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUserInfoResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CardUserInfoResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -61,4 +61,4 @@ public class CardUserInfoResponse extends MpResponse { * GIFT_TIMEOUT 转赠超时 DELETE 已删除,UNAVAILABLE 已失效 */ private UserCardStatus userCardStatus; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomCell.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomCell.java index 2dd9edaa..1ced27f7 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomCell.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomCell.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -48,4 +48,4 @@ public CustomCell(@JsonProperty("name") String name, this.tips = tips; this.url = url; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomField.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomField.java index dc2452a8..4d161d74 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomField.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomField.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -90,4 +90,4 @@ public CustomField(String name, String url) { public static CustomField remove() { return new CustomField("", "", ""); } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomFieldValue.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomFieldValue.java index 851f22b0..4821f60a 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomFieldValue.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/CustomFieldValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -24,4 +24,4 @@ public class CustomFieldValue { private String name; private String value; private List valueList; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/DateInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/DateInfo.java index f495e38c..3e526452 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/DateInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/DateInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -99,4 +99,4 @@ public static DateInfo timeRange(Instant beginTimestamp, Instant endTimestamp) { return new DateInfo(DateInfoType.DATE_TYPE_FIX_TIME_RANGE, beginTimestamp.getEpochSecond(), endTimestamp.getEpochSecond(), null, null); } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/DecryptCodeRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/DecryptCodeRequest.java index d1f79d41..13bc0470 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/DecryptCodeRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/DecryptCodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/FreeCardBiz.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/FreeCardBiz.java index 92ae08d8..f04a8174 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/FreeCardBiz.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/FreeCardBiz.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCard.java index 668636ca..6a1b6a08 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardActivateForm.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardActivateForm.java index 456b78ca..2c5e2047 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardActivateForm.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardActivateForm.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -76,4 +76,4 @@ public MemberCardActivateForm optionalForm(ActivateForm optionalForm) { this.optionalForm = optionalForm; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardActivateRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardActivateRequest.java index fb8a9189..8f00538f 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardActivateRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardActivateRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -76,4 +76,4 @@ public class MemberCardActivateRequest { * 创建时字段custom_field3定义类型的初始值,限制为4个汉字,12字节。 */ private String initCustomFieldValue3; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardBaseInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardBaseInfo.java index 58e3a4a9..d4a38ed0 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardBaseInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardBaseInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -411,4 +411,4 @@ public MemberCardBaseInfo needPushOnView(Boolean needPushOnView) { return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardBiz.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardBiz.java index 3e771087..c6fb9696 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardBiz.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardBiz.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -71,4 +71,4 @@ public class MemberCardBiz { * 浏览人数 */ private Integer viewUser; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardDetail.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardDetail.java index acf04d6a..ac4a7acc 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardDetail.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardDetail.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -93,4 +93,4 @@ public class MemberCardDetail { private Integer newUser; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardDetailRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardDetailRequest.java index 76dd7965..3fd390a3 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardDetailRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardDetailRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -30,4 +30,4 @@ public class MemberCardDetailRequest { private final LocalDate endDate; private final LocalDate beginDate; private final String cardId; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardInfo.java index fe74a259..f4d884ed 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberCardInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -351,4 +351,4 @@ public MemberCardInfo discount(int discount) { this.discount = discount; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberRule.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberRule.java index 426d449b..d0158c93 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberRule.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MemberRule.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -74,4 +74,4 @@ public MemberRule appBrand(String appBrandId, String appBrandPass) { this.appBrandPass = appBrandPass; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/ModifyStockRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/ModifyStockRequest.java index 35f43e9b..cb577d06 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/ModifyStockRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/ModifyStockRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -55,4 +55,4 @@ public static ModifyStockRequest increaseStock(String cardId, int increaseStockV public static ModifyStockRequest reduceStock(String cardId, int reduceStockValue) { return new ModifyStockRequest(cardId, null, reduceStockValue); } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleCard.java index 2a3acd20..ecebaf95 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleCardInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleCardInfo.java index 2fcc8ea4..1d51b74f 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleCardInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleCardInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -91,4 +91,4 @@ public MultipleCardInfo outerId(String outerId) { this.outerId = outerId; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleQrcodeRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleQrcodeRequest.java index dc5328cc..4c6c4d9c 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleQrcodeRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/MultipleQrcodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/NotifyOptional.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/NotifyOptional.java index 139377b7..46ce6a0f 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/NotifyOptional.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/NotifyOptional.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -100,4 +100,4 @@ public NotifyOptional notifyCustomField3(boolean isNotifyCustomField3) { this.isNotifyCustomField3 = isNotifyCustomField3; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/OpenUserCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/OpenUserCard.java index 835adacf..adc3c7fa 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/OpenUserCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/OpenUserCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftFailMchid.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftFailMchid.java index 8f4153b8..0f57c997 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftFailMchid.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftFailMchid.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -24,4 +24,4 @@ public class PayGiftFailMchid { private String mchid; private Integer occupyRuleId; private String occupyAppid; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRuleId.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRuleId.java index 93ac2e8d..abfd6914 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRuleId.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRuleId.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRuleInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRuleInfo.java index 49794a3c..dcb08fd0 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRuleInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRuleInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -54,4 +54,4 @@ public PayGiftRuleInfo(RuleBaseInfo baseInfo, MemberRule memberRule) { this.baseInfo = baseInfo; this.memberRule = memberRule; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRulesRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRulesRequest.java index 6c504f75..c4b6ff63 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRulesRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRulesRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -20,4 +20,4 @@ @Data public class PayGiftRulesRequest { private final PayGiftRuleInfo ruleInfo; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRulesResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRulesResponse.java index aead11c1..21bbca16 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRulesResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayGiftRulesResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -28,4 +28,4 @@ public class PayGiftRulesResponse extends MpResponse { private Integer ruleId; private List failMchidList; private List succMchidList; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayInfo.java index cee38ce4..087cdcfe 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/PayInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/RichField.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/RichField.java index e73317e8..05fdb07e 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/RichField.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/RichField.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -25,4 +25,4 @@ public class RichField { private final RichFieldType type; private final String name; private final List values; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/RuleBaseInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/RuleBaseInfo.java index 7f5c19b7..95d1f3c2 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/RuleBaseInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/RuleBaseInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -37,4 +37,4 @@ public class RuleBaseInfo { * 规则结束时间 */ private final Instant beginTime; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/ServiceStatement.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/ServiceStatement.java index 92d734f5..95aca92f 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/ServiceStatement.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/ServiceStatement.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -21,4 +21,4 @@ public class ServiceStatement { private String name; private String url; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleActionInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleActionInfo.java index 268f3e04..1bc0d7a1 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleActionInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleActionInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleCard.java index 14623ffa..d4de608e 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -122,4 +122,4 @@ public SingleCard outerId(String outerId) { this.outerId = outerId; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleQrcodeRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleQrcodeRequest.java index 32f1fa5a..c37ec094 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleQrcodeRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/SingleQrcodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/Sku.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/Sku.java index 275be1ef..c751f384 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/Sku.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/Sku.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -53,4 +53,4 @@ public Sku(@JsonProperty("quantity") Long quantity) { this.quantity = quantity; this.totalQuantity = totalQuantity; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/SwipeCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/SwipeCard.java index e65fb691..e9933a3f 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/SwipeCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/SwipeCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/TestWhiteListRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/TestWhiteListRequest.java index ce40acde..6cdbb01e 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/TestWhiteListRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/TestWhiteListRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/TextImage.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/TextImage.java index 07dd820c..ce7b7535 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/TextImage.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/TextImage.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -49,4 +49,4 @@ public TextImage(@JsonProperty("image_url") String imageUrl, @JsonProperty("text this.imageUrl = imageUrl; this.text = text; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateBaseInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateBaseInfo.java index de355731..8f9e3875 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateBaseInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateBaseInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCard.java index a47024f8..6857c2d6 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCardRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCardRequest.java index 95c53ccc..94cb2012 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCardRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCardRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCodeRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCodeRequest.java index cb33805b..8e0737ea 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCodeRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UpdateCodeRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UseCondition.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UseCondition.java index 2f5e6552..2e10a66d 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UseCondition.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UseCondition.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -135,4 +135,4 @@ public UseCondition canUseWithOtherDiscount(Boolean canUseWithOtherDiscount) { this.canUseWithOtherDiscount = canUseWithOtherDiscount; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCard.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCard.java index 80400885..a1b1fac7 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCard.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCard.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -24,4 +24,4 @@ public class UserCard { private Instant beginTime; private Instant endTime; private String cardId; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardInfo.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardInfo.java index 6a031f93..dc5f4bf4 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardInfo.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardInfo.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardRequest.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardRequest.java index d900d9be..f8b5708f 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardRequest.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardRequest.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -56,4 +56,4 @@ public UserCardRequest(String code, boolean checkConsume, String cardId) { super(code, cardId); this.checkConsume = checkConsume; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardResponse.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardResponse.java index ca9ff266..c8df4e21 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/UserCardResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -33,4 +33,4 @@ public class UserCardResponse extends MpResponse { private UserCard card; private boolean canConsume; private UserCardStatus userCardStatus; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/card/WeekDayLimit.java b/wemp-objects/src/main/java/cn/felord/mp/domain/card/WeekDayLimit.java index 35228843..db6315fe 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/card/WeekDayLimit.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/card/WeekDayLimit.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.card; @@ -123,4 +123,4 @@ public WeekDayLimit endMinute(Integer endMinute) { this.endMinute = endMinute; return this; } -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/common/KV.java b/wemp-objects/src/main/java/cn/felord/mp/domain/common/KV.java index d73cd9f8..1fabef56 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/common/KV.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/common/KV.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.common; @@ -21,4 +21,4 @@ public class KV { private String name; private String value; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/media/MediaUrl.java b/wemp-objects/src/main/java/cn/felord/mp/domain/media/MediaUrl.java index 050a9868..405df8d5 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/media/MediaUrl.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/media/MediaUrl.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.media; diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/message/MessageBody.java b/wemp-objects/src/main/java/cn/felord/mp/domain/message/MessageBody.java index 75dc229f..d545570c 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/message/MessageBody.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/message/MessageBody.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.message; @@ -27,4 +27,4 @@ public class MessageBody { private String templateId; private Miniprogram miniprogram; private String url; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/message/Miniprogram.java b/wemp-objects/src/main/java/cn/felord/mp/domain/message/Miniprogram.java index cd4184a0..5db45dc0 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/message/Miniprogram.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/message/Miniprogram.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.message; @@ -21,4 +21,4 @@ public class Miniprogram { private String pagepath; private String appid; -} \ No newline at end of file +} diff --git a/wemp-objects/src/main/java/cn/felord/mp/domain/message/TemplateValue.java b/wemp-objects/src/main/java/cn/felord/mp/domain/message/TemplateValue.java index 377a3fca..384e5942 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/domain/message/TemplateValue.java +++ b/wemp-objects/src/main/java/cn/felord/mp/domain/message/TemplateValue.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.domain.message; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/BusinessService.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/BusinessService.java index 648d105e..b40d0615 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/BusinessService.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/BusinessService.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardBgColor.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardBgColor.java index bfb92aaf..33dbb071 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardBgColor.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardBgColor.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardCodeType.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardCodeType.java index f1353122..a0cc7188 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardCodeType.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardCodeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardStatus.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardStatus.java index ea7de610..2bf1676f 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardStatus.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardTimeType.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardTimeType.java index 098fb46d..6323593a 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardTimeType.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardTimeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardType.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardType.java index 945ad2c3..c1309892 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardType.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CardType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CommonField.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CommonField.java index ba38990e..8a329675 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CommonField.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CommonField.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CondSource.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CondSource.java index 5bf8aa15..ce6d1042 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/CondSource.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/CondSource.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/DateInfoType.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/DateInfoType.java index e3ad88b1..23ddf593 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/DateInfoType.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/DateInfoType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/MemberCardFieldType.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/MemberCardFieldType.java index 3b873831..115f9982 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/MemberCardFieldType.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/MemberCardFieldType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/RichFieldType.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/RichFieldType.java index 4fe3a40a..d32b2016 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/RichFieldType.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/RichFieldType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/UserCardStatus.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/UserCardStatus.java index 0a808ded..81b82696 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/UserCardStatus.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/UserCardStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/enumeration/WeekDay.java b/wemp-objects/src/main/java/cn/felord/mp/enumeration/WeekDay.java index 193b6c73..370e6090 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/enumeration/WeekDay.java +++ b/wemp-objects/src/main/java/cn/felord/mp/enumeration/WeekDay.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.enumeration; diff --git a/wemp-objects/src/main/java/cn/felord/mp/retrofit/AbstractTokenApi.java b/wemp-objects/src/main/java/cn/felord/mp/retrofit/AbstractTokenApi.java index bfe8fe80..9c8c5b62 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/retrofit/AbstractTokenApi.java +++ b/wemp-objects/src/main/java/cn/felord/mp/retrofit/AbstractTokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.retrofit; diff --git a/wemp-objects/src/main/java/cn/felord/mp/retrofit/AccessTokenApi.java b/wemp-objects/src/main/java/cn/felord/mp/retrofit/AccessTokenApi.java index 45c6175d..45c91209 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/retrofit/AccessTokenApi.java +++ b/wemp-objects/src/main/java/cn/felord/mp/retrofit/AccessTokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.retrofit; diff --git a/wemp-objects/src/main/java/cn/felord/mp/retrofit/AccessTokenResponse.java b/wemp-objects/src/main/java/cn/felord/mp/retrofit/AccessTokenResponse.java index 509ee15d..eebfe998 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/retrofit/AccessTokenResponse.java +++ b/wemp-objects/src/main/java/cn/felord/mp/retrofit/AccessTokenResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.retrofit; diff --git a/wemp-objects/src/main/java/cn/felord/mp/retrofit/ResponseBodyCallAdapterFactory.java b/wemp-objects/src/main/java/cn/felord/mp/retrofit/ResponseBodyCallAdapterFactory.java index 0724173f..7898472b 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/retrofit/ResponseBodyCallAdapterFactory.java +++ b/wemp-objects/src/main/java/cn/felord/mp/retrofit/ResponseBodyCallAdapterFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.retrofit; diff --git a/wemp-objects/src/main/java/cn/felord/mp/retrofit/RetrofitAccessTokenApi.java b/wemp-objects/src/main/java/cn/felord/mp/retrofit/RetrofitAccessTokenApi.java index d51dd377..68560ed9 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/retrofit/RetrofitAccessTokenApi.java +++ b/wemp-objects/src/main/java/cn/felord/mp/retrofit/RetrofitAccessTokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.retrofit; diff --git a/wemp-objects/src/main/java/cn/felord/mp/retrofit/TokenApi.java b/wemp-objects/src/main/java/cn/felord/mp/retrofit/TokenApi.java index ec3a8bc1..3202e254 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/retrofit/TokenApi.java +++ b/wemp-objects/src/main/java/cn/felord/mp/retrofit/TokenApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.retrofit; diff --git a/wemp-objects/src/main/java/cn/felord/mp/retrofit/TokenInterceptor.java b/wemp-objects/src/main/java/cn/felord/mp/retrofit/TokenInterceptor.java index 5c32ab78..93ec3fb5 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/retrofit/TokenInterceptor.java +++ b/wemp-objects/src/main/java/cn/felord/mp/retrofit/TokenInterceptor.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.retrofit; diff --git a/wemp-objects/src/main/java/cn/felord/mp/retrofit/WechatMpRetrofitFactory.java b/wemp-objects/src/main/java/cn/felord/mp/retrofit/WechatMpRetrofitFactory.java index bb6e351e..e7a1abf9 100644 --- a/wemp-objects/src/main/java/cn/felord/mp/retrofit/WechatMpRetrofitFactory.java +++ b/wemp-objects/src/main/java/cn/felord/mp/retrofit/WechatMpRetrofitFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.retrofit; diff --git a/wemp-sdk/pom.xml b/wemp-sdk/pom.xml index 502b98d8..6c12b604 100644 --- a/wemp-sdk/pom.xml +++ b/wemp-sdk/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/wemp-sdk/src/main/java/cn/felord/mp/api/CardApi.java b/wemp-sdk/src/main/java/cn/felord/mp/api/CardApi.java index bf7a7b3d..611b0b75 100644 --- a/wemp-sdk/src/main/java/cn/felord/mp/api/CardApi.java +++ b/wemp-sdk/src/main/java/cn/felord/mp/api/CardApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.api; diff --git a/wemp-sdk/src/main/java/cn/felord/mp/api/InternalMediaApi.java b/wemp-sdk/src/main/java/cn/felord/mp/api/InternalMediaApi.java index ad3f7d99..76a8accd 100644 --- a/wemp-sdk/src/main/java/cn/felord/mp/api/InternalMediaApi.java +++ b/wemp-sdk/src/main/java/cn/felord/mp/api/InternalMediaApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.api; diff --git a/wemp-sdk/src/main/java/cn/felord/mp/api/MediaApi.java b/wemp-sdk/src/main/java/cn/felord/mp/api/MediaApi.java index 97c53b90..346918df 100644 --- a/wemp-sdk/src/main/java/cn/felord/mp/api/MediaApi.java +++ b/wemp-sdk/src/main/java/cn/felord/mp/api/MediaApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.api; diff --git a/wemp-sdk/src/main/java/cn/felord/mp/api/MessageApi.java b/wemp-sdk/src/main/java/cn/felord/mp/api/MessageApi.java index 9801ef01..f7d36e8c 100644 --- a/wemp-sdk/src/main/java/cn/felord/mp/api/MessageApi.java +++ b/wemp-sdk/src/main/java/cn/felord/mp/api/MessageApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.api; diff --git a/wemp-sdk/src/main/java/cn/felord/mp/api/WeChatMpApiClient.java b/wemp-sdk/src/main/java/cn/felord/mp/api/WeChatMpApiClient.java index 6d454dc4..52e14da9 100644 --- a/wemp-sdk/src/main/java/cn/felord/mp/api/WeChatMpApiClient.java +++ b/wemp-sdk/src/main/java/cn/felord/mp/api/WeChatMpApiClient.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.api; diff --git a/wemp-sdk/src/main/java/cn/felord/mp/api/WechatMpApi.java b/wemp-sdk/src/main/java/cn/felord/mp/api/WechatMpApi.java index f0b33191..2fdac195 100644 --- a/wemp-sdk/src/main/java/cn/felord/mp/api/WechatMpApi.java +++ b/wemp-sdk/src/main/java/cn/felord/mp/api/WechatMpApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.mp.api; diff --git a/wepay-objects/pom.xml b/wepay-objects/pom.xml index 6b8cc104..7b4870e5 100644 --- a/wepay-objects/pom.xml +++ b/wepay-objects/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/wepay-objects/src/main/java/cn/felord/payment/PayException.java b/wepay-objects/src/main/java/cn/felord/payment/PayException.java index 72d5793d..3c3fda57 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/PayException.java +++ b/wepay-objects/src/main/java/cn/felord/payment/PayException.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ActivityStatus.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ActivityStatus.java index 5dd3d375..13b45ea6 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ActivityStatus.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ActivityStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/AwardType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/AwardType.java index b63542da..d9f27a13 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/AwardType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/AwardType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BankCode.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BankCode.java index 2341f05b..55fd39ce 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BankCode.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BankCode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorCodeDisplayMode.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorCodeDisplayMode.java index 0802f3e4..04166cf6 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorCodeDisplayMode.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorCodeDisplayMode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorState.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorState.java index 9a60c8d3..a4bd44ea 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorState.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorUseMethod.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorUseMethod.java index 21adaf44..9463e10e 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorUseMethod.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusiFavorUseMethod.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusinessCertType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusinessCertType.java index c51e55db..6fdefb6d 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusinessCertType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusinessCertType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusinessType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusinessType.java index c28eedc6..8ef3d54e 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusinessType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/BusinessType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ContactType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ContactType.java index d2cbebb1..e20e3099 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ContactType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ContactType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ContractStatus.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ContractStatus.java index 309ca272..decd8b41 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ContractStatus.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ContractStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CountType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CountType.java index 4ef479e2..27e7ef87 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CountType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CountType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponBgColor.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponBgColor.java index 7690193f..d7685115 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponBgColor.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponBgColor.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponCodeMode.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponCodeMode.java index 115dfa66..7b05888c 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponCodeMode.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponCodeMode.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; @@ -41,4 +41,4 @@ public enum CouponCodeMode { * @since 1.0.4.RELEASE */ MERCHANT_UPLOAD -} \ No newline at end of file +} diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponState.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponState.java index baccbda1..2f3070c1 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponState.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/CouponState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DeliveryPurpose.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DeliveryPurpose.java index b85393fa..c7b61eac 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DeliveryPurpose.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DeliveryPurpose.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DeliveryUserCategory.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DeliveryUserCategory.java index d173b424..1df308fc 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DeliveryUserCategory.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DeliveryUserCategory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DetailStatus.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DetailStatus.java index b870ca6c..ecc57a9c 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DetailStatus.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/DetailStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FinanceType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FinanceType.java index f5f61c3f..9019bbb5 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FinanceType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FinanceType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FundAccountType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FundAccountType.java index 87f26621..8623a4ee 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FundAccountType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FundAccountType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FundFlowAccountType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FundFlowAccountType.java index f01764e8..bed1e230 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FundFlowAccountType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/FundFlowAccountType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/H5SceneType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/H5SceneType.java index 51b49f05..1a0dd073 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/H5SceneType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/H5SceneType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/IdDocType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/IdDocType.java index 6f324d92..c654bc96 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/IdDocType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/IdDocType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PartnerType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PartnerType.java index 19f8815d..f1f53bdb 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PartnerType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PartnerType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PartnershipState.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PartnershipState.java index 138ddcbf..4781b649 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PartnershipState.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PartnershipState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PayScoreOrderState.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PayScoreOrderState.java index 747c3c53..847aaec3 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PayScoreOrderState.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PayScoreOrderState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PayType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PayType.java index b7f35434..357aa14c 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PayType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PayType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PlateColor.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PlateColor.java index 38584571..6e3917a0 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PlateColor.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PlateColor.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PromotionScope.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PromotionScope.java index 73abb9f3..fd7f2103 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PromotionScope.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PromotionScope.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PromotionType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PromotionType.java index 1c6a7a13..20411db2 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PromotionType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/PromotionType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ReceiverType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ReceiverType.java index 4a84eaff..5b17a9d4 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ReceiverType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/ReceiverType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; @@ -35,4 +35,4 @@ public enum ReceiverType { * 个人sub_openid(由子商户APPID转换得到),服务商模式 */ PERSONAL_SUB_OPENID -} \ No newline at end of file +} diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundChannel.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundChannel.java index d511781c..8c543f06 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundChannel.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundChannel.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundPromotionType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundPromotionType.java index f7d21f04..2f34f1bf 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundPromotionType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundPromotionType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundResult.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundResult.java index 28c8d742..cc01dfd7 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundResult.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundResult.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundStatus.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundStatus.java index 597290e1..1b7b75d4 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundStatus.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RefundStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RiskFundType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RiskFundType.java index 4eb14d95..9b4c9621 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RiskFundType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/RiskFundType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SendContent.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SendContent.java index f9f61b63..7fe23b29 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SendContent.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SendContent.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StateDescription.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StateDescription.java index b4c08efe..3e27c0aa 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StateDescription.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StateDescription.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StockStatus.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StockStatus.java index 776c1c6a..493be958 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StockStatus.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StockStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StockType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StockType.java index de1a12b7..7147c5fc 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StockType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StockType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StrategyType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StrategyType.java index 4d422808..f603cc29 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StrategyType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/StrategyType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubjectType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubjectType.java index 582437a1..bb1a8bd5 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubjectType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubjectType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubsidyFailReason.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubsidyFailReason.java index d857bd3a..7fa05597 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubsidyFailReason.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubsidyFailReason.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubsidyStatus.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubsidyStatus.java index 714eaa5b..4acd3c7d 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubsidyStatus.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/SubsidyStatus.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TarType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TarType.java index e0e24de1..319d84bb 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TarType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TarType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeBillType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeBillType.java index d18ad34f..4b376144 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeBillType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeBillType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeState.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeState.java index 7cdcb836..85e5fd37 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeState.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeState.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeType.java index a805f2f6..41d5ded8 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TradeType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TransferAcceptType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TransferAcceptType.java index a31af53e..6518b94a 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TransferAcceptType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/TransferAcceptType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/UnfinishedReason.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/UnfinishedReason.java index b9812883..6d2d7002 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/UnfinishedReason.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/UnfinishedReason.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/WeChatServer.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/WeChatServer.java index a64346fc..99e57241 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/WeChatServer.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/WeChatServer.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/WechatPayAlgorithms.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/WechatPayAlgorithms.java index 51f37101..4d80ddd5 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/WechatPayAlgorithms.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/enumeration/WechatPayAlgorithms.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.enumeration; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/WepaySdkVersion.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/WepaySdkVersion.java index 7f9e38ed..1b326fc3 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/WepaySdkVersion.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/WepaySdkVersion.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AppMerchant.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AppMerchant.java index 789f6d76..d130772e 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AppMerchant.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AppMerchant.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AppMerchantService.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AppMerchantService.java index 51f2d095..2ec0be21 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AppMerchantService.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AppMerchantService.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AuthType.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AuthType.java index acb05318..5e9c4de5 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AuthType.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/AuthType.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/CipherAlg.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/CipherAlg.java index a6b70cc6..c5b92ed7 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/CipherAlg.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/CipherAlg.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/DefaultWecomCipher.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/DefaultWecomCipher.java index 35b179f8..f0fbe6d5 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/DefaultWecomCipher.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/DefaultWecomCipher.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/FileMerchantKeyLoader.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/FileMerchantKeyLoader.java index 26323ddb..5dc9c16c 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/FileMerchantKeyLoader.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/FileMerchantKeyLoader.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/TenpayKey.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/TenpayKey.java index ff1534fd..1907d8bf 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/TenpayKey.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/TenpayKey.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/WechatPaySigner.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/WechatPaySigner.java index 425f8517..e6a95c2e 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/WechatPaySigner.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/WechatPaySigner.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/WecomCipher.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/WecomCipher.java index 2c68a1d1..2be6de0b 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/WecomCipher.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/crypto/WecomCipher.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.crypto; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/GenericPayResponse.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/GenericPayResponse.java index 5494d017..df9004f3 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/GenericPayResponse.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/GenericPayResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/WechatPayResponse.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/WechatPayResponse.java index 6913c717..75a829ef 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/WechatPayResponse.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/WechatPayResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AssociateTime.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AssociateTime.java index 1b49ee78..74f71453 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AssociateTime.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AssociateTime.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.busifavor; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AvailableDayTimeItem.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AvailableDayTimeItem.java index 49e33a3b..f3382522 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AvailableDayTimeItem.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AvailableDayTimeItem.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.busifavor; @@ -33,4 +33,4 @@ public class AvailableDayTimeItem { * 当天可用结束时间,单位:秒,86399代表当天23点59分59秒。 */ private Integer beginTime; -} \ No newline at end of file +} diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AvailableWeek.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AvailableWeek.java index 9365d180..48c3a0a7 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AvailableWeek.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/AvailableWeek.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.busifavor; @@ -43,4 +43,4 @@ public class AvailableWeek { * 当填写{@link #availableDayTime}时,{@code weekDay}必填 */ private List weekDay; -} \ No newline at end of file +} diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/CodeUploadResponse.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/CodeUploadResponse.java index cc01d3ea..376be987 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/CodeUploadResponse.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/CodeUploadResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.busifavor; @@ -33,4 +33,4 @@ public class CodeUploadResponse { private List failCodes; private List existCodes; private List duplicateCodes; -} \ No newline at end of file +} diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/CouponAvailableTime.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/CouponAvailableTime.java index 52c8bcd6..20f0c5c2 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/CouponAvailableTime.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/busifavor/CouponAvailableTime.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.busifavor; @@ -152,4 +152,4 @@ public CouponAvailableTime irregularyAvaliableTime(List postPayme this.totalAmount = totalAmount; this.postDiscounts = postDiscounts; } -} \ No newline at end of file +} diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PayScoreOrder.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PayScoreOrder.java index 49728f96..275ea859 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PayScoreOrder.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PayScoreOrder.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.payscore; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PayScoreOrderResponse.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PayScoreOrderResponse.java index 19f2347f..734a6110 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PayScoreOrderResponse.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PayScoreOrderResponse.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.payscore; @@ -43,4 +43,4 @@ public class PayScoreOrderResponse { private String orderId; @JsonProperty("package") private String pkg; -} \ No newline at end of file +} diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PostDiscount.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PostDiscount.java index 8e7e0c6c..d55472bd 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PostDiscount.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PostDiscount.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.payscore; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PostPayment.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PostPayment.java index 1feff1ae..d6c7124c 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PostPayment.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/PostPayment.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.payscore; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/QueryServiceOrderParams.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/QueryServiceOrderParams.java index be235651..5af25ffc 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/QueryServiceOrderParams.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/QueryServiceOrderParams.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.payscore; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/RiskFund.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/RiskFund.java index 6f9180d3..ba43e9d6 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/RiskFund.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/RiskFund.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.payscore; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/TimeRange.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/TimeRange.java index 0e7791dc..c8375304 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/TimeRange.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/TimeRange.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.payscore; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/UserServiceOrderParams.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/UserServiceOrderParams.java index 40e7ced7..e6768177 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/UserServiceOrderParams.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/domain/payscore/UserServiceOrderParams.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.domain.payscore; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/AbstractAuthorizationInterceptor.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/AbstractAuthorizationInterceptor.java index a00a5b62..9b0abb1f 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/AbstractAuthorizationInterceptor.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/AbstractAuthorizationInterceptor.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/HttpHeaders.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/HttpHeaders.java index 8af920ad..57e9c4ad 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/HttpHeaders.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/HttpHeaders.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/InMemoryTenpayKeyCache.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/InMemoryTenpayKeyCache.java index c99b07f9..f7ecc3c0 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/InMemoryTenpayKeyCache.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/InMemoryTenpayKeyCache.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/InternalCertificateApi.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/InternalCertificateApi.java index 7a0dbfe6..39589ef3 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/InternalCertificateApi.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/InternalCertificateApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/ResponseBodyCallAdapterFactory.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/ResponseBodyCallAdapterFactory.java index 922af6ea..dbe54ac6 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/ResponseBodyCallAdapterFactory.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/ResponseBodyCallAdapterFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/TenpayCertificateService.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/TenpayCertificateService.java index b9d9185f..82b4eb1c 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/TenpayCertificateService.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/TenpayCertificateService.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/TenpayKeyCache.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/TenpayKeyCache.java index 0ad59b19..72f6dd6d 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/TenpayKeyCache.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/TenpayKeyCache.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/WechatAuthorizationInterceptor.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/WechatAuthorizationInterceptor.java index c36ecd6e..9a5f3bba 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/WechatAuthorizationInterceptor.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/WechatAuthorizationInterceptor.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/WechatPayRetrofitFactory.java b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/WechatPayRetrofitFactory.java index 38f7df86..3640c7e5 100644 --- a/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/WechatPayRetrofitFactory.java +++ b/wepay-objects/src/main/java/cn/felord/payment/wechat/v3/retrofit/WechatPayRetrofitFactory.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.retrofit; diff --git a/wepay-sdk/pom.xml b/wepay-sdk/pom.xml index d0987c1c..45f242ae 100644 --- a/wepay-sdk/pom.xml +++ b/wepay-sdk/pom.xml @@ -1,19 +1,4 @@ - - diff --git a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/CombinePayApi.java b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/CombinePayApi.java index 33c19ef1..eeb270dd 100644 --- a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/CombinePayApi.java +++ b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/CombinePayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.api.direct; diff --git a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/DirectBasePayApi.java b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/DirectBasePayApi.java index 87876185..f960e1e4 100644 --- a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/DirectBasePayApi.java +++ b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/DirectBasePayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.api.direct; diff --git a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalBasePayApi.java b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalBasePayApi.java index 3cf1dc76..c14d5452 100644 --- a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalBasePayApi.java +++ b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalBasePayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.api.direct; diff --git a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalCombinePayApi.java b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalCombinePayApi.java index 9d40dea5..663c078c 100644 --- a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalCombinePayApi.java +++ b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalCombinePayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.api.direct; diff --git a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalPayScoreApi.java b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalPayScoreApi.java index d9adb298..b2e545e1 100644 --- a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalPayScoreApi.java +++ b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/InternalPayScoreApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.api.direct; diff --git a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/MarketingBusiFavorApi.java b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/MarketingBusiFavorApi.java index 6f5039a4..bacd8d86 100644 --- a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/MarketingBusiFavorApi.java +++ b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/MarketingBusiFavorApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.api.direct; diff --git a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/WechatPayApi.java b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/WechatPayApi.java index 50dbf7ce..2965e592 100644 --- a/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/WechatPayApi.java +++ b/wepay-sdk/src/main/java/cn/felord/payment/wechat/v3/api/direct/WechatPayApi.java @@ -1,16 +1,16 @@ /* - * Copyright (c) 2023. felord.cn - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * https://www.apache.org/licenses/LICENSE-2.0 - * Website: + * Website: * https://felord.cn - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ package cn.felord.payment.wechat.v3.api.direct; From e35d25d531678ee8e12738fa8e4c32a01921b2ab Mon Sep 17 00:00:00 2001 From: xiafang Date: Wed, 11 Sep 2024 09:15:05 +0800 Subject: [PATCH 11/13] =?UTF-8?q?fix:=E6=89=B9=E9=87=8F=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=8E=A5=E5=8F=A3=E5=8F=82=E6=95=B0=E5=AF=B9?= =?UTF-8?q?=E8=B1=A1=E5=A3=B0=E6=98=8E=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #IAQB7I --- .../main/java/cn/felord/domain/contactbook/user/UserIds.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIds.java b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIds.java index cc696d99..486046ec 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIds.java +++ b/wecom-objects/src/main/java/cn/felord/domain/contactbook/user/UserIds.java @@ -25,5 +25,5 @@ */ @Data public class UserIds { - private final List useridList; + private final List useridlist; } From 6112c07febbc15d798e6b17478f51d25d5a4d1ac Mon Sep 17 00:00:00 2001 From: xiafang Date: Mon, 23 Sep 2024 16:15:50 +0800 Subject: [PATCH 12/13] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E5=AE=A1=E6=89=B9?= =?UTF-8?q?=E5=9B=9E=E8=B0=83=E4=BA=8B=E4=BB=B6=E4=B8=AD=E9=99=84=E4=BB=B6?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E8=A7=A3=E6=9E=90=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cn/felord/domain/callback/Details.java | 6 ++- .../enumeration/CallbackReplyMsgType.java | 39 +++++++++++++++++++ 2 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 wecom-objects/src/main/java/cn/felord/enumeration/CallbackReplyMsgType.java diff --git a/wecom-objects/src/main/java/cn/felord/domain/callback/Details.java b/wecom-objects/src/main/java/cn/felord/domain/callback/Details.java index 40c2a799..8341af7d 100644 --- a/wecom-objects/src/main/java/cn/felord/domain/callback/Details.java +++ b/wecom-objects/src/main/java/cn/felord/domain/callback/Details.java @@ -17,9 +17,11 @@ import cn.felord.enumeration.NodeStatus; import com.thoughtworks.xstream.annotations.XStreamAlias; +import com.thoughtworks.xstream.annotations.XStreamImplicit; import lombok.Data; import java.time.Instant; +import java.util.List; /** * The type Details. @@ -37,7 +39,7 @@ public class Details { private NodeStatus spStatus; @XStreamAlias("SpTime") private Instant spTime; - @XStreamAlias("Attach") - private String attach; + @XStreamImplicit(itemFieldName = "Attach") + private final List attaches; } diff --git a/wecom-objects/src/main/java/cn/felord/enumeration/CallbackReplyMsgType.java b/wecom-objects/src/main/java/cn/felord/enumeration/CallbackReplyMsgType.java new file mode 100644 index 00000000..134a49ca --- /dev/null +++ b/wecom-objects/src/main/java/cn/felord/enumeration/CallbackReplyMsgType.java @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2024. felord.cn + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * https://www.apache.org/licenses/LICENSE-2.0 + * Website: + * https://felord.cn + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package cn.felord.enumeration; + +/** + * @author dax + * @since 2024/9/19 + */ +public enum CallbackReplyMsgType { + TEXT("text"), + IMAGE("image"), + VOICE("voice"), + VIDEO("video"), + LOCATION("location"), + LINK("link"); + + private final String msgType; + + CallbackReplyMsgType(String msgType) { + this.msgType = msgType; + } + + public String value() { + return msgType; + } +} From 682549ffa026d3ea00884c64e4d40cede8c813ec Mon Sep 17 00:00:00 2001 From: xiafang Date: Mon, 23 Sep 2024 16:28:43 +0800 Subject: [PATCH 13/13] =?UTF-8?q?feature:=20=E6=96=B0=E7=9A=84=E4=B8=AD?= =?UTF-8?q?=E5=A4=AE=E4=BB=93=E5=BA=93=E6=8F=92=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index 3928824c..1eeeafe9 100644 --- a/pom.xml +++ b/pom.xml @@ -69,8 +69,8 @@ maven-gpg-plugin - org.sonatype.plugins - nexus-staging-maven-plugin + org.sonatype.central + central-publishing-maven-plugin org.apache.maven.plugins @@ -249,14 +249,13 @@ - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 + org.sonatype.central + central-publishing-maven-plugin + 0.5.0 true - ossrh - https://oss.sonatype.org/ - false + ossrh +