AllocationVO.java 584 B

123456789101112131415161718192021222324
  1. package com.kcim.vo;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.math.BigDecimal;
  6. @Data
  7. @ApiModel("归集查询视图对象")
  8. public class AllocationVO {
  9. @ApiModelProperty(name = "year",value = "年")
  10. private Integer year;
  11. @ApiModelProperty(name = "month",value = "月")
  12. private Integer month;
  13. @ApiModelProperty(name = "amount",value = "金额")
  14. private BigDecimal amount;
  15. @ApiModelProperty(name = "isAllocation",value = "是否分摊")
  16. private Boolean isAllocation;
  17. }