CommonTitleReportVo.java 911 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.kcim.vo;
  2. import lombok.Data;
  3. import java.util.List;
  4. /**
  5. * @program: CostAccount
  6. * @description:
  7. * @author: Wang.YS
  8. * @create: 2024-04-17 15:58
  9. **/
  10. @Data
  11. public class CommonTitleReportVo {
  12. private Long reportId;
  13. private Long parentReportId;
  14. private String reportName;
  15. private Integer sort;
  16. /**
  17. * 数据类型:0未知 1数值 2百分比
  18. */
  19. private Integer dataType;
  20. /**
  21. * 小数位
  22. */
  23. private Integer decimalPlace;
  24. /**
  25. * 是否有千分号
  26. */
  27. private Integer permil;
  28. private List<CommonTitleReportVo> childTitle;
  29. public CommonTitleReportVo(Long reportId, Long parentReportId, String reportName, Integer sort) {
  30. this.reportId = reportId;
  31. this.parentReportId = parentReportId;
  32. this.reportName = reportName;
  33. this.sort = sort;
  34. }
  35. public CommonTitleReportVo() {
  36. }
  37. }