| | |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.math.BigDecimal; |
| | | |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty("类别类型id") |
| | | private Long categoryType; |
| | | |
| | | @Excel(name = "金额") |
| | | @ApiModelProperty("金额") |
| | | @NotNull(message = "金额不能为空") |
| | | private BigDecimal categoryAmount; |
| | | /** |
| | | * 删除标志(0代表存在2代表删除) |
| | | */ |
| | | private Integer delFlag; |
| | | |
| | | public BigDecimal getCategoryAmount() { |
| | | return categoryAmount; |
| | | } |
| | | |
| | | public void setCategoryAmount(BigDecimal categoryAmount) { |
| | | this.categoryAmount = categoryAmount; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |