driver.java
来自「车辆管理系统是OA系统中一部分。 单独使用。 提高车辆的有效管理」· Java 代码 · 共 94 行
JAVA
94 行
package org.langsin.car.vo;
import java.util.HashSet;
import java.util.Set;
/**
* Driver generated by MyEclipse - Hibernate Tools
*/
@SuppressWarnings("serial")
public class Driver implements java.io.Serializable {
// Fields
private Integer driverid;
private User user;
private String drivertype;
private String memo;
private Set carapplies = new HashSet(0);
// Constructors
/** default constructor */
public Driver() {
}
/** minimal constructor */
public Driver(String drivertype) {
this.drivertype = drivertype;
}
/** full constructor */
public Driver(User user, String drivertype, String memo, Set carapplies) {
this.user = user;
this.drivertype = drivertype;
this.memo = memo;
this.carapplies = carapplies;
}
// Property accessors
public Integer getDriverid() {
return this.driverid;
}
public void setDriverid(Integer driverid) {
this.driverid = driverid;
}
public User getUser() {
return this.user;
}
public void setUser(User user) {
this.user = user;
}
public String getDrivertype() {
return this.drivertype;
}
public void setDrivertype(String drivertype) {
this.drivertype = drivertype;
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
public Set getCarapplies() {
return this.carapplies;
}
public void setCarapplies(Set carapplies) {
this.carapplies = carapplies;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?