Cui Zhi Feng
2024-09-06 4eac233b94afdfca8870ccc16a58bde032001fe1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.mzl.flower.dto.response.payment;
 
import com.mzl.flower.base.AbstractTransDTO;
import com.mzl.flower.base.annotation.DictTrans;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
public class DeliveryOrderStatisticsDTO {
 
    @ApiModelProperty(value = "日期")
    private LocalDate date;
 
    @ApiModelProperty(value = "数量")
    private Integer num;
 
    @ApiModelProperty(value = "价格")
    private BigDecimal price;
}