Compare commits
4
Commits
c2d1c48aae
..
v1.0.8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2170c48763 | ||
|
|
568563475e | ||
|
|
8a92e46eb1 | ||
|
|
1875cec8a5 |
@@ -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>
|
||||
|
||||
@@ -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