Cui Zhi Feng
2024-10-23 c6908e1d2efd4f3a1fcfdb1af7f1b78156d07d91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.mzl.flower.dto.response.statistics;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class SaleStatisticsDTO {
    @ApiModelProperty(value = "销售额")
    private BigDecimal saleAmount;
 
    @ApiModelProperty(value = "销售扎数")
    private Integer saleFlowerCount;
}