ReportFormVO.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.kcim.vo;
  2. import com.fasterxml.jackson.annotation.JsonInclude;
  3. import io.swagger.annotations.ApiModel;
  4. import lombok.AllArgsConstructor;
  5. import lombok.Data;
  6. import lombok.NoArgsConstructor;
  7. import java.util.List;
  8. @Data
  9. @AllArgsConstructor
  10. @NoArgsConstructor
  11. @ApiModel("报表项目视图对象")
  12. public class ReportFormVO {
  13. private Long id;
  14. private Integer num;
  15. private String reportName;
  16. private Long parentId;
  17. private Integer calcType;
  18. private Integer reportType;
  19. private String calcFormula;
  20. private Integer sort;
  21. private String ratioBase;
  22. private Long hospId;
  23. private Integer isLoss;
  24. @JsonInclude(JsonInclude.Include.NON_NULL)
  25. private Integer showAddRelation;
  26. @JsonInclude(JsonInclude.Include.NON_NULL)
  27. private List<ReportFormVO> children;
  28. @JsonInclude(JsonInclude.Include.NON_NULL)
  29. private List<RelationVO> reportRelations;
  30. private Integer costType;
  31. private Integer fraction;
  32. private String description;
  33. private Integer hide;
  34. /**
  35. * 报表与诊次床日关联的状态
  36. */
  37. private Integer reportNumberSetStatus=0;
  38. public ReportFormVO(Long id,Integer num, String reportName, Long parentId,List<ReportFormVO> children) {
  39. this.num = num;
  40. this.reportName = reportName;
  41. this.parentId = parentId;
  42. this.id = id;
  43. this.children = children;
  44. }
  45. }