AccountVO.java 913 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.kcim.vo;
  2. import com.fasterxml.jackson.annotation.JsonIgnore;
  3. import com.fasterxml.jackson.annotation.JsonInclude;
  4. import io.swagger.annotations.ApiModel;
  5. import lombok.Data;
  6. import java.util.List;
  7. @Data
  8. @ApiModel
  9. public class AccountVO {
  10. private Long id;
  11. private String accountingName;
  12. private String accountingCode;
  13. @JsonIgnore
  14. private Long parentId;
  15. private Integer isBaseCost;
  16. @JsonInclude(JsonInclude.Include.NON_EMPTY)
  17. private List<AccountVO> children;
  18. /**
  19. * true表示选中 是否被分摊参数选中
  20. */
  21. private Boolean isShareParamSelect = false;
  22. /**
  23. * true表示选中 是否被收入归集设置选中
  24. */
  25. private Boolean isIncomeGroutSetSelect = false;
  26. private Integer costType;
  27. private String type;
  28. private String typeName;
  29. private Integer controlType;
  30. private Integer medicalType;
  31. }