|
|
@@ -47,7 +47,9 @@ public class UserDigitalAvatarOrder extends TenantEntity { |
|
|
|
public List<String> getUserImageList(){ |
|
|
|
if(StringUtils.isNotBlank(userImages)){ |
|
|
|
try{ |
|
|
|
return JSONObject.parseArray(userImages, String.class); |
|
|
|
List<String> strings = JSONObject.parseArray(userImages, String.class); |
|
|
|
strings.removeIf(StringUtils::isEmpty); |
|
|
|
return strings; |
|
|
|
}catch(Exception e){ |
|
|
|
} |
|
|
|
} |
|
|
|