| | |
| | | @Data |
| | | public class FlowerStatisticsDTO { |
| | | @ApiModelProperty(value = "商品管理") |
| | | private Integer flowerCount; |
| | | private Long flowerCount; |
| | | |
| | | @ApiModelProperty(value = "用户管理") |
| | | private Integer supplierCount; |
| | | private Long supplierCount; |
| | | |
| | | @ApiModelProperty(value = "订单管理") |
| | | private Integer orderCount; |
| | | private Long orderCount; |
| | | |
| | | @ApiModelProperty(value = "订单管理-待发货") |
| | | private Integer orderSendCount; |
| | | private Long orderSendCount; |
| | | |
| | | @ApiModelProperty(value = "商品管理-在售") |
| | | private Integer flowerUpCount; |
| | | private Long flowerUpCount; |
| | | |
| | | @ApiModelProperty(value = "商品管理-待审核") |
| | | private Integer flowerPendingCount; |
| | | private Long flowerPendingCount; |
| | | |
| | | @ApiModelProperty(value = "待售后处理") |
| | | private Integer orderSalesCount; |
| | | private Long orderSalesCount; |
| | | } |