|
@@ -162,6 +162,15 @@ public class StorePriceController {
|
|
|
if (StringUtils.isNotEmpty(storePrice.getUsageRule())) {
|
|
if (StringUtils.isNotEmpty(storePrice.getUsageRule())) {
|
|
|
textContent.append(storePrice.getUsageRule()).append(" ");
|
|
textContent.append(storePrice.getUsageRule()).append(" ");
|
|
|
}
|
|
}
|
|
|
|
|
+ if (StringUtils.isNotEmpty(storePrice.getDescription())) {
|
|
|
|
|
+ textContent.append(storePrice.getDescription()).append(" ");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (StringUtils.isNotEmpty(storePrice.getDishReview())) {
|
|
|
|
|
+ textContent.append(storePrice.getDishReview()).append(" ");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (StringUtils.isNotEmpty(storePrice.getTags())) {
|
|
|
|
|
+ textContent.append(storePrice.getTags()).append(" ");
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
List<String> imageUrls = new ArrayList<>();
|
|
List<String> imageUrls = new ArrayList<>();
|
|
|
|
|
|
|
@@ -291,6 +300,15 @@ public class StorePriceController {
|
|
|
if (StringUtils.isNotEmpty(storePrice.getUsageRule())) {
|
|
if (StringUtils.isNotEmpty(storePrice.getUsageRule())) {
|
|
|
textContent.append(storePrice.getUsageRule()).append(" ");
|
|
textContent.append(storePrice.getUsageRule()).append(" ");
|
|
|
}
|
|
}
|
|
|
|
|
+ if (StringUtils.isNotEmpty(storePrice.getDescription())) {
|
|
|
|
|
+ textContent.append(storePrice.getDescription()).append(" ");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (StringUtils.isNotEmpty(storePrice.getDishReview())) {
|
|
|
|
|
+ textContent.append(storePrice.getDishReview()).append(" ");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (StringUtils.isNotEmpty(storePrice.getTags())) {
|
|
|
|
|
+ textContent.append(storePrice.getTags()).append(" ");
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
List<String> imageUrls = new ArrayList<>();
|
|
List<String> imageUrls = new ArrayList<>();
|
|
|
|
|
|