yanghb
2023-04-06 e4874ff3af0c59b6b9a1ee1ae39a332829253cd7
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.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
/**
* 订单附加费
* @author pzb
* @Date 2022/2/11 11:14
*/
@Data
@TableName("t_order_additional_fee")
public class OrderAdditionalFee {
    //主键
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    //订单类型(1=专车,2=出租车,3跨城出行,4=同城小件物流,5=跨城小件物流,6=包车,7=助老模式)
    @TableField("orderType")
    private Integer orderType;
    //订单id
    @TableField("orderId")
    private Integer orderId;
    //附加费id
    @TableField("additionalFeeId")
    private Integer additionalFeeId;
    //金额
    @TableField("amount")
    private Double amount;
}