CommonTitleReportVo.java 677 B

1234567891011121314151617181920212223242526272829303132333435
  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. private List<CommonTitleReportVo> childTitle;
  17. public CommonTitleReportVo(Long reportId, Long parentReportId, String reportName, Integer sort) {
  18. this.reportId = reportId;
  19. this.parentReportId = parentReportId;
  20. this.reportName = reportName;
  21. this.sort = sort;
  22. }
  23. public CommonTitleReportVo() {
  24. }
  25. }