📄 fee.java
字号:
package org.langsin.car.vo;
import java.util.Date;
/**
* Fee generated by MyEclipse - Hibernate Tools
*/
@SuppressWarnings("serial")
public class Fee implements java.io.Serializable {
// Fields
private Integer feeid;
private Carin carin;
private String feetype;
private Date feedate;
private String memo;
// Constructors
/** default constructor */
public Fee() {
}
/** minimal constructor */
public Fee(String feetype) {
this.feetype = feetype;
}
/** full constructor */
public Fee(Carin carin, String feetype, Date feedate, String memo) {
this.carin = carin;
this.feetype = feetype;
this.feedate = feedate;
this.memo = memo;
}
// Property accessors
public Integer getFeeid() {
return this.feeid;
}
public void setFeeid(Integer feeid) {
this.feeid = feeid;
}
public Carin getCarin() {
return this.carin;
}
public void setCarin(Carin carin) {
this.carin = carin;
}
public String getFeetype() {
return this.feetype;
}
public void setFeetype(String feetype) {
this.feetype = feetype;
}
public Date getFeedate() {
return this.feedate;
}
public void setFeedate(Date feedate) {
this.feedate = feedate;
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -