Digital Office Automation System Backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DimensionStatsVO.java 697B

1234567891011121314151617181920212223242526272829
  1. package com.ruoyi.tjfx.entity;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. /**
  6. * 规格维度统计数据
  7. */
  8. @Data
  9. @AllArgsConstructor
  10. public class DimensionStatsVO {
  11. /** 维度值名称 */
  12. private String name;
  13. /** 销售数量 */
  14. private Double quantity;
  15. /** 销售金额 */
  16. private Double amount;
  17. /* *//** 数量占比(百分比字符串) *//*
  18. private String quantityPercentage;
  19. *//** 金额占比(百分比字符串) *//*
  20. private String amountPercentage;*/
  21. /** 数量或者 金额占比(百分比字符串) */
  22. private String percentage;
  23. //价格或者销量
  24. private Double value;
  25. }