productsendtype.java
来自「一个简易的网上购物系统。具有普遍的购物功能。还有一个小型的论坛」· Java 代码 · 共 71 行
JAVA
71 行
package com.longHua.domain;
import java.util.Date;
/**
* Productsendtype entity.
*
* @author MyEclipse Persistence Tools
*/
public class ProductSendType implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = -6469022979290320661L;
private Integer id;
private String typeName;
private Float money;
private Date addTime;
// Constructors
/** default constructor */
public ProductSendType() {
}
/** full constructor */
public ProductSendType(String typeName, Float money, Date addTime) {
this.typeName = typeName;
this.money = money;
this.addTime = addTime;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTypeName() {
return this.typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public Float getMoney() {
return this.money;
}
public void setMoney(Float money) {
this.money = money;
}
public Date getAddTime() {
return this.addTime;
}
public void setAddTime(Date addTime) {
this.addTime = addTime;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?