File was renamed from zq-erp/src/main/java/com/matrix/system/app/vo/RankingDto.java |
| | |
| | | * @author wzy |
| | | * @date 2020-12-28 |
| | | **/ |
| | | @ApiModel(value = "RankingDto", description = "排行榜返回参数类") |
| | | public class RankingDto { |
| | | @ApiModel(value = "RankingVo", description = "排行榜返回参数类") |
| | | public class RankingVo { |
| | | |
| | | @ApiModelProperty(value = "姓名") |
| | | private String name; |
| | |
| | | @ApiModelProperty(value = "金额") |
| | | private BigDecimal amount; |
| | | |
| | | @ApiModelProperty(value = "店铺名称") |
| | | private String shopName; |
| | | |
| | | public String getShopName() { |
| | | return shopName; |
| | | } |
| | | |
| | | public void setShopName(String shopName) { |
| | | this.shopName = shopName; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |