📄 carin.java
字号:
package org.langsin.car.vo;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Carin generated by MyEclipse - Hibernate Tools
*/
@SuppressWarnings("serial")
public class Carin implements java.io.Serializable {
// Fields
private Integer carinid;
private User user;
private Applycheck applycheck;
private Date carindate;
private String memo;
private Set fees = new HashSet(0);
// Constructors
/** default constructor */
public Carin() {
}
/** full constructor */
public Carin(User user, Applycheck applycheck, Date carindate, String memo, Set fees) {
this.user = user;
this.applycheck = applycheck;
this.carindate = carindate;
this.memo = memo;
this.fees = fees;
}
// Property accessors
public Integer getCarinid() {
return this.carinid;
}
public void setCarinid(Integer carinid) {
this.carinid = carinid;
}
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 getCarindate() {
return this.carindate;
}
public void setCarindate(Date carindate) {
this.carindate = carindate;
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
public Set getFees() {
return this.fees;
}
public void setFees(Set fees) {
this.fees = fees;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -