Compare commits
19
Commits
c49686c411
..
v1.0.8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2170c48763 | ||
|
|
568563475e | ||
|
|
8a92e46eb1 | ||
|
|
1875cec8a5 | ||
|
|
c2d1c48aae | ||
|
|
4c162dad34 | ||
|
|
e14958c643 | ||
|
|
da288338cd | ||
|
|
ea430f2468 | ||
|
|
f76f79744a | ||
|
|
19daaff907 | ||
|
|
db94d8f932 | ||
|
|
53618fe362 | ||
|
|
523edffc4e | ||
|
|
c7ddb1a8b0 | ||
|
|
45c9fc814a | ||
|
|
407dc13ac4 | ||
|
|
0c06bf16c2 | ||
|
|
1db39e77d3 |
@@ -11,7 +11,7 @@
|
||||
|
||||
<groupId>com.imyeyu.timiserverapi</groupId>
|
||||
<artifactId>TimiServerAPI</artifactId>
|
||||
<version>1.0.6</version>
|
||||
<version>1.0.8</version>
|
||||
<packaging>jar</packaging>
|
||||
<name>TimiServerAPI</name>
|
||||
<description>imyeyu.com API</description>
|
||||
@@ -188,7 +188,7 @@
|
||||
<dependency>
|
||||
<groupId>com.imyeyu.java</groupId>
|
||||
<artifactId>timi-java</artifactId>
|
||||
<version>0.0.7</version>
|
||||
<version>0.0.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.imyeyu.utils</groupId>
|
||||
|
||||
@@ -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 {
|
||||
|
||||
+6
-1
@@ -434,7 +434,12 @@ public class GaoCustomerServiceImplement extends AbstractEntityService<GaoCustom
|
||||
if (TimiJava.isNotEmpty(customer.getCreatorUserId())) {
|
||||
customer.setCreatorUser(userService.get(customer.getCreatorUserId()));
|
||||
}
|
||||
loadAttachmentList(List.of(customer));
|
||||
List<GaoCustomer> detailCustomerList = new ArrayList<>();
|
||||
detailCustomerList.add(customer);
|
||||
if (customer.getIntroducerCustomer() != null) {
|
||||
detailCustomerList.add(customer.getIntroducerCustomer());
|
||||
}
|
||||
loadAttachmentList(detailCustomerList);
|
||||
}
|
||||
|
||||
private void loadListTransient(List<GaoCustomer> customerList) {
|
||||
|
||||
Reference in New Issue
Block a user