xuhy
2025-01-09 712f70b2936079a131ecb1e63c6d337171618cad
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
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;
 
import java.util.Date;
 
/**
* 车辆出租
* @author pzb
* @Date 2022/5/28 14:39
*/
@Data
@TableName("tb_car_rental")
public class CarRental {
    //主键
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    //用户类型(1=用户,2=司机,3=企业)
    @TableField("userType")
    private Integer userType;
    //对应用户类型id
    @TableField("userId")
    private Integer userId;
    //标题
    @TableField("title")
    private String title;
    //品牌id
    @TableField("brandId")
    private Integer brandId;
    //品牌名称
    @TableField("brandName")
    private String brandName;
    //类别
    @TableField("category")
    private String category;
    //座位
    @TableField("seat")
    private String seat;
    //排量
    @TableField("displacement")
    private String displacement;
    //档位
    @TableField("gear")
    private String gear;
    //取车证件
    @TableField("pickUpCarCarCertificates")
    private String pickUpCarCarCertificates;
    //租金
    @TableField("rentMoney")
    private String rentMoney;
    //押金
    @TableField("deposit")
    private Double deposit;
    //描述
    @TableField("describe")
    private String describe;
    //描述图片
    @TableField("describeImgUrl")
    private String describeImgUrl;
    //联系人电话
    @TableField("contactsPhone")
    private String contactsPhone;
    //联系人
    @TableField("contactsName")
    private String contactsName;
    //省code
    @TableField("provinceCode")
    private String provinceCode;
    //市code
    @TableField("cityCode")
    private String cityCode;
    //省名称
    @TableField("provinceName")
    private String provinceName;
    //市名称
    @TableField("cityName")
    private String cityName;
    //创建时间
    @TableField("createTime")
    private Date createTime;
    //状态(1=待审核,2=已上架,3=已下架,4=审核通过待上架,5=已拒绝,6=删除)
    @TableField("status")
    private Integer status;
    //地址
    @TableField("addres")
    private String addres;
    //审核备注
    @TableField("authRemark")
    private String authRemark;
    //图片
    @TableField("imgUrl")
    private String imgUrl;
    //视频地址
    @TableField("videoUrl")
    private String videoUrl;
    //是否首页显示(1=是,2=否)
    @TableField("firstPageShow")
    private Integer firstPageShow;
    //发布者id
    @TableField("insertUser")
    private Integer insertUser;
}