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

📄 applycheck.java

📁 车辆管理系统是OA系统中一部分。 单独使用。 提高车辆的有效管理
💻 JAVA
字号:
package org.langsin.car.vo;

import java.util.Date;
import java.util.HashSet;
import java.util.Set;


/**
 * Applycheck generated by MyEclipse - Hibernate Tools
 */

@SuppressWarnings("serial")
public class Applycheck  implements java.io.Serializable {


    // Fields    

     private Integer checkid;
     private User user;
     private Carapply carapply;
     private String checkstatus;
     private Date checkdate;
     private String memo;
     private Set carins = new HashSet(0);
     private Set carouts = new HashSet(0);


    // Constructors

    /** default constructor */
    public Applycheck() {
    }

	/** minimal constructor */
    public Applycheck(String checkstatus) {
        this.checkstatus = checkstatus;
    }
    
    /** full constructor */
    public Applycheck(User user, Carapply carapply, String checkstatus, Date checkdate, String memo, Set carins, Set carouts) {
        this.user = user;
        this.carapply = carapply;
        this.checkstatus = checkstatus;
        this.checkdate = checkdate;
        this.memo = memo;
        this.carins = carins;
        this.carouts = carouts;
    }

   
    // Property accessors

    public Integer getCheckid() {
        return this.checkid;
    }
    
    public void setCheckid(Integer checkid) {
        this.checkid = checkid;
    }

    public User getUser() {
        return this.user;
    }
    
    public void setUser(User user) {
        this.user = user;
    }

    public Carapply getCarapply() {
        return this.carapply;
    }
    
    public void setCarapply(Carapply carapply) {
        this.carapply = carapply;
    }

    public String getCheckstatus() {
        return this.checkstatus;
    }
    
    public void setCheckstatus(String checkstatus) {
        this.checkstatus = checkstatus;
    }

    public Date getCheckdate() {
        return this.checkdate;
    }
    
    public void setCheckdate(Date checkdate) {
        this.checkdate = checkdate;
    }

    public String getMemo() {
        return this.memo;
    }
    
    public void setMemo(String memo) {
        this.memo = memo;
    }

    public Set getCarins() {
        return this.carins;
    }
    
    public void setCarins(Set carins) {
        this.carins = carins;
    }

    public Set getCarouts() {
        return this.carouts;
    }
    
    public void setCarouts(Set carouts) {
        this.carouts = carouts;
    }
   








}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -