12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 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;
- /**
- * 数据类型:0未知 1数值 2百分比
- */
- private Integer dataType;
- /**
- * 小数位
- */
- private Integer decimalPlace;
- /**
- * 是否有千分号
- */
- private Integer permil;
- 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() {
- }
- }
|