📄 carout.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -