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
package com.mzl.flower.dto.response.transport;
 
import com.mzl.flower.dto.AreaDTO;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class TransportFeeDTO {
    private Long id;
 
    @ApiModelProperty(value = "首重/Kg")
    private Double firstWeight;
 
    @ApiModelProperty(value = "续重/Kg")
    private Double addedWeight;
 
    @ApiModelProperty(value = "默认起步价")
    private BigDecimal firstWeightFee;
 
    @ApiModelProperty(value = "默认加价")
    private BigDecimal addedWeightFee;
 
    @ApiModelProperty(value = "适用地区")
    private List<AreaDTO> areas;
}