Administrator
2022-09-14 58d006e05dcf2a20d0ec5367dd03d66a61db6849
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
108
109
110
111
112
113
114
115
116
117
118
119
package com.mandi.fendan.persist;
 
import java.io.Serializable;
 
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
 
/** 
 * @author cx
 * @version 创建时间:2017年10月23日 
 * 类说明 
 */
@Entity
@Table(name="fd_vehicle",uniqueConstraints={@UniqueConstraint(columnNames="vehicleId")})
public class Fd_Vehicle implements Serializable{
    @Id
    private String id;
    private String companyNo;
    private String driver;
    private double loadweight;//载重
    private String note;
    private String phone;
    private boolean state;//启用/禁用
    private String vehicleId;//车牌号
    private double vehicleweight;//车重
    @Enumerated(EnumType.STRING)
    private VehicleType type;//车辆类型 
    
    private String feature;//特征描述
    private String IDNum;//身份证号
    
    @Enumerated(EnumType.STRING)
    private VehicleStatus status;//车辆状态  这个值没有什么用了
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getCompanyNo() {
        return companyNo;
    }
    public void setCompanyNo(String companyNo) {
        this.companyNo = companyNo;
    }
    public String getDriver() {
        return driver;
    }
    public void setDriver(String driver) {
        this.driver = driver;
    }
    public double getLoadweight() {
        return loadweight;
    }
    public void setLoadweight(double loadweight) {
        this.loadweight = loadweight;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public String getPhone() {
        return phone;
    }
    public void setPhone(String phone) {
        this.phone = phone;
    }
    public boolean isState() {
        return state;
    }
    public void setState(boolean state) {
        this.state = state;
    }
    public String getVehicleId() {
        return vehicleId;
    }
    public void setVehicleId(String vehicleId) {
        this.vehicleId = vehicleId;
    }
    public double getVehicleweight() {
        return vehicleweight;
    }
    public void setVehicleweight(double vehicleweight) {
        this.vehicleweight = vehicleweight;
    }
    public VehicleType getType() {
        return type;
    }
    public void setType(VehicleType type) {
        this.type = type;
    }
    public VehicleStatus getStatus() {
        return status;
    }
    public void setStatus(VehicleStatus status) {
        this.status = status;
    }
    public String getFeature() {
        return feature;
    }
    public void setFeature(String feature) {
        this.feature = feature;
    }
    public String getIDNum() {
        return IDNum;
    }
    public void setIDNum(String iDNum) {
        IDNum = iDNum;
    }
 
    
    
}