carout.java
来自「车辆管理系统是OA系统中一部分。 单独使用。 提高车辆的有效管理」· Java 代码 · 共 89 行
JAVA
89 行
package org.langsin.car.vo;
import java.util.Date;
/**
* Carout generated by MyEclipse - Hibernate Tools
*/
@SuppressWarnings("serial")
public class Carout implements java.io.Serializable {
// Fields
private Integer caroutid;
private User user;
private Applycheck applycheck;
private Date caroutdate;
private String memo;
// Constructors
/** default constructor */
public Carout() {
}
/** full constructor */
public Carout(User user, Applycheck applycheck, Date caroutdate, String memo) {
this.user = user;
this.applycheck = applycheck;
this.caroutdate = caroutdate;
this.memo = memo;
}
// Property accessors
public Integer getCaroutid() {
return this.caroutid;
}
public void setCaroutid(Integer caroutid) {
this.caroutid = caroutid;
}
public User getUser() {
return this.user;
}
public void setUser(User user) {
this.user = user;
}
public Applycheck getApplycheck() {
return this.applycheck;
}
public void setApplycheck(Applycheck applycheck) {
this.applycheck = applycheck;
}
public Date getCaroutdate() {
return this.caroutdate;
}
public void setCaroutdate(Date caroutdate) {
this.caroutdate = caroutdate;
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?