陶杰
2024-08-22 ee9032d9baf5f33e376d2d2699136e0a7b26bec7
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
package com.mzl.flower.entity.transport;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.mzl.flower.base.BaseAutoPhyEntity;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@TableName("t_transport_fee")
public class TransportFee extends BaseAutoPhyEntity {
 
    @TableField("transport_id")
    private Long transportId;//物流id
 
    @TableField("first_weight")
    private Double firstWeight;//首重/Kg
 
    @TableField("added_weight")
    private Double addedWeight;//续重/Kg
 
    @TableField("first_weight_fee")
    private BigDecimal firstWeightFee;//默认起步价
 
    @TableField("added_weight_fee")
    private BigDecimal addedWeightFee;//默认加价
 
}