tj
7 天以前 b428226d0cf78bbb843fa17bffb1e338230fae6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.mzl.flower.dto.response.statistics;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class FlowerStatisticsDTO {
    @ApiModelProperty(value = "商品管理")
    private Long flowerCount;
 
    @ApiModelProperty(value = "供应商")
    private Long supplierCount;
 
    @ApiModelProperty(value = "用户管理")
    private Long customerCount;
 
    @ApiModelProperty(value = "订单管理")
    private Long orderCount;
 
    @ApiModelProperty(value = "订单管理-待发货")
    private Long orderSendCount;
 
    @ApiModelProperty(value = "商品管理-在售")
    private Long flowerUpCount;
 
    @ApiModelProperty(value = "商品管理-待审核")
    private Long flowerPendingCount;
 
    @ApiModelProperty(value = "待售后处理")
    private Long orderSalesCount;
}