From 1875cec8a594978d12a9c1d32331c8a3ce93c05b Mon Sep 17 00:00:00 2001 From: Timi Date: Mon, 3 Aug 2026 23:45:56 +0800 Subject: [PATCH 1/3] add registration event rank --- .../gao/service/implement/GaoCustomerServiceImplement.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/imyeyu/api/modules/gao/service/implement/GaoCustomerServiceImplement.java b/src/main/java/com/imyeyu/api/modules/gao/service/implement/GaoCustomerServiceImplement.java index 3d5ec18..471526e 100644 --- a/src/main/java/com/imyeyu/api/modules/gao/service/implement/GaoCustomerServiceImplement.java +++ b/src/main/java/com/imyeyu/api/modules/gao/service/implement/GaoCustomerServiceImplement.java @@ -434,7 +434,12 @@ public class GaoCustomerServiceImplement extends AbstractEntityService detailCustomerList = new ArrayList<>(); + detailCustomerList.add(customer); + if (customer.getIntroducerCustomer() != null) { + detailCustomerList.add(customer.getIntroducerCustomer()); + } + loadAttachmentList(detailCustomerList); } private void loadListTransient(List customerList) { -- 2.54.0 From 8a92e46eb11d627a58ba693d28b668585ece535e Mon Sep 17 00:00:00 2001 From: Timi Date: Mon, 3 Aug 2026 23:46:12 +0800 Subject: [PATCH 2/3] unlimit attach read rate --- .../api/modules/common/controller/AttachmentController.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/com/imyeyu/api/modules/common/controller/AttachmentController.java b/src/main/java/com/imyeyu/api/modules/common/controller/AttachmentController.java index 6eb7dec..28712f7 100644 --- a/src/main/java/com/imyeyu/api/modules/common/controller/AttachmentController.java +++ b/src/main/java/com/imyeyu/api/modules/common/controller/AttachmentController.java @@ -208,7 +208,6 @@ public class AttachmentController { } @AOPLog - @RequestRateLimit @IgnoreGlobalReturn @GetMapping({"/read/{id}", "/download/{id}"}) public void readById(@PathVariable String id, @RequestParam(required = false) Integer thumbWidth, @RequestParam(required = false) Integer thumbHeight) throws UnsupportedEncodingException { -- 2.54.0 From 568563475e1761bb94e72678526f98a15ad96138 Mon Sep 17 00:00:00 2001 From: Timi Date: Tue, 4 Aug 2026 00:35:57 +0800 Subject: [PATCH 3/3] v1.0.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a0cf3bd..5e66368 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ com.imyeyu.timiserverapi TimiServerAPI - 1.0.6 + 1.0.8 jar TimiServerAPI imyeyu.com API -- 2.54.0