1234567891011121314151617181920212223242526272829303132333435 |
- package com.kcim.vo;
- import lombok.Data;
- import java.util.List;
- /**
- * @program: CostAccount
- * @description:
- * @author: Wang.YS
- * @create: 2024-04-17 15:58
- **/
- @Data
- public class CommonTitleReportVo {
- private Long reportId;
- private Long parentReportId;
- private String reportName;
- private Integer sort;
- private List<CommonTitleReportVo> childTitle;
- public CommonTitleReportVo(Long reportId, Long parentReportId, String reportName, Integer sort) {
- this.reportId = reportId;
- this.parentReportId = parentReportId;
- this.reportName = reportName;
- this.sort = sort;
- }
- public CommonTitleReportVo() {
- }
- }
|