⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 driver.java

📁 车辆管理系统是OA系统中一部分。 单独使用。 提高车辆的有效管理
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -