businessyear.java
来自「上网计费系统,适用网吧或者自己学习用用JAVA写成」· Java 代码 · 共 78 行
JAVA
78 行
package com.briup.dao.bean;
import java.util.Date;
/**
* Businessyear generated by MyEclipse - Hibernate Tools
*/
public class Businessyear implements java.io.Serializable {
// Fields
private Long id;
private String productName;
private Date ondate;
private Double sumfee;
// Constructors
/** default constructor */
public Businessyear() {
}
/** full constructor */
public Businessyear(String productName, Date ondate, Double sumfee) {
this.productName = productName;
this.ondate = ondate;
this.sumfee = sumfee;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getProductName() {
return this.productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public Date getOndate() {
return this.ondate;
}
public void setOndate(Date ondate) {
this.ondate = ondate;
}
public Double getSumfee() {
return this.sumfee;
}
public void setSumfee(Double sumfee) {
this.sumfee = sumfee;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?