📄 gymaterial.java
字号:
package com.company.struts.form;
/**
* GyMaterial generated by MyEclipse Persistence Tools
*/
public class GyMaterial extends org.apache.struts.action.ActionForm implements
java.io.Serializable {
// Fields
private Integer wareCode;
private String wareName;
private String wareType;
private double warePrice;
// Constructors
/** default constructor */
public GyMaterial() {
}
/** full constructor */
public GyMaterial(String wareName, String wareType,double warePrice) {
this.wareName = wareName;
this.wareType = wareType;
this.warePrice=warePrice;
}
// Property accessors
public double getWarePrice() {
return warePrice;
}
public void setWarePrice(double warePrice) {
this.warePrice = warePrice;
}
public Integer getWareCode() {
return this.wareCode;
}
public void setWareCode(Integer wareCode) {
this.wareCode = wareCode;
}
public String getWareName() {
return this.wareName;
}
public void setWareName(String wareName) {
this.wareName = wareName;
}
public String getWareType() {
return this.wareType;
}
public void setWareType(String wareType) {
this.wareType = wareType;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -