Pu Zhibing
2025-03-07 2ea6f1abf46fa5a911200c998dddc6ea374cd246
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
34
35
36
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 zhibing.pu
 * @Date 2025/3/4 15:23
 */
@Data
@TableName("t_vehicle")
public class Vehicles {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 车牌号
     */
    @TableField("vehicleCode")
    private String vehicleCode;
    /**
     * 公司名
     */
    @TableField("companyName")
    private String companyName;
    /**
     * 公司id
     */
    @TableField("companyId")
    private Integer companyId;
}