package com.kcim.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; @Data @ApiModel("归集查询视图对象") public class AllocationVO { @ApiModelProperty(name = "year",value = "年") private Integer year; @ApiModelProperty(name = "month",value = "月") private Integer month; @ApiModelProperty(name = "amount",value = "金额") private BigDecimal amount; @ApiModelProperty(name = "isAllocation",value = "是否分摊") private Boolean isAllocation; }