ReportFormProfitVo.java 571 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.kcim.vo;
  2. import com.kcim.dao.model.ReportForm;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. import java.util.List;
  6. /**
  7. * @program: CostAccount
  8. * @description:
  9. * @author: Wang.YS
  10. * @create: 2024-09-26 16:07
  11. **/
  12. @Data
  13. public class ReportFormProfitVo extends ReportForm {
  14. private Integer medicalType;
  15. private BigDecimal currentAmount;
  16. private BigDecimal preMonthAmount;
  17. private String preMonthPercent;
  18. private BigDecimal preYearAmount;
  19. private String preYearPercent;
  20. private List<ReportFormProfitVo> children;
  21. }