|
|
@@ -13,35 +13,38 @@ import java.util.List;
|
|
|
@Getter
|
|
|
@Setter
|
|
|
public class ReqGoodsSkuSpec {
|
|
|
- private String key;
|
|
|
+ private String key;
|
|
|
|
|
|
- private List<Node> values;
|
|
|
+ private List<Node> values;
|
|
|
|
|
|
- @Getter
|
|
|
- @Setter
|
|
|
- public static class Node {
|
|
|
- private Integer id;
|
|
|
+ @Getter
|
|
|
+ @Setter
|
|
|
+ public static class Node {
|
|
|
+ private Integer id;
|
|
|
|
|
|
- private String value;
|
|
|
+ private String value;
|
|
|
|
|
|
- private Boolean hide;
|
|
|
+ private Boolean hide;
|
|
|
|
|
|
- private String logo;
|
|
|
+ private String logo;
|
|
|
|
|
|
- private BigDecimal price;
|
|
|
+ private BigDecimal price;
|
|
|
|
|
|
- /**
|
|
|
- * 预览图
|
|
|
- */
|
|
|
- private String previewImgs;
|
|
|
+ /**
|
|
|
+ * 租赁押金
|
|
|
+ */
|
|
|
+ private BigDecimal deposit;
|
|
|
|
|
|
- private String benefitsList;
|
|
|
+ /**
|
|
|
+ * 预览图
|
|
|
+ */
|
|
|
+ private String previewImgs;
|
|
|
|
|
|
- /**
|
|
|
- * 原价
|
|
|
- */
|
|
|
- private BigDecimal benefitsPrice;
|
|
|
+ private String benefitsList;
|
|
|
|
|
|
- private BigDecimal deposit;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 原价
|
|
|
+ */
|
|
|
+ private BigDecimal benefitsPrice;
|
|
|
+ }
|
|
|
}
|