carin.java
来自「车辆管理系统是OA系统中一部分。 单独使用。 提高车辆的有效管理」· Java 代码 · 共 101 行
JAVA
101 行
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 + =
减小字号Ctrl + -
显示快捷键?