Helius
2022-05-27 4351e71d782741143a98f86f6648acd16689165f
zq-erp/src/main/java/com/matrix/system/app/vo/RankingVo.java
@@ -24,6 +24,9 @@
    @ApiModelProperty(value = "店铺名称")
    private String shopName;
    @ApiModelProperty(value = "员工ID")
    private Long id;
    public String getShopName() {
        return shopName;
    }
@@ -49,10 +52,18 @@
    }
    public BigDecimal getAmount() {
        return amount;
        return amount == null ? amount : amount.setScale(BigDecimal.ROUND_DOWN, 2);
    }
    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
}