📄 productform.java
字号:
package cn.bway.foreigntrade.reperstory.product.form;
import cn.bway.common.form.BaseForm;
/**
* Product generated by MyEclipse Persistence Tools
*/
public class ProductForm extends BaseForm implements java.io.Serializable {
// Fields
private String id;
private String codes;
private String names;
private String price;
private String spec;
private String craftwork;
private String color;
private String stuff;
private String provide;
private String productionperiod;
private String qc;
private String types;
private String numbers;
// Constructors
/** default constructor */
public ProductForm() {
}
/** full constructor */
public ProductForm(String codes, String names, String price, String spec, String craftwork, String color, String stuff, String provide, String productionperiod, String qc, String types, String numbers) {
this.codes = codes;
this.names = names;
this.price = price;
this.spec = spec;
this.craftwork = craftwork;
this.color = color;
this.stuff = stuff;
this.provide = provide;
this.productionperiod = productionperiod;
this.qc = qc;
this.types = types;
this.numbers = numbers;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getCodes() {
return this.codes;
}
public void setCodes(String codes) {
this.codes = codes;
}
public String getNames() {
return this.names;
}
public void setNames(String names) {
this.names = names;
}
public String getPrice() {
return this.price;
}
public void setPrice(String price) {
this.price = price;
}
public String getSpec() {
return this.spec;
}
public void setSpec(String spec) {
this.spec = spec;
}
public String getCraftwork() {
return this.craftwork;
}
public void setCraftwork(String craftwork) {
this.craftwork = craftwork;
}
public String getColor() {
return this.color;
}
public void setColor(String color) {
this.color = color;
}
public String getStuff() {
return this.stuff;
}
public void setStuff(String stuff) {
this.stuff = stuff;
}
public String getProvide() {
return this.provide;
}
public void setProvide(String provide) {
this.provide = provide;
}
public String getProductionperiod() {
return this.productionperiod;
}
public void setProductionperiod(String productionperiod) {
this.productionperiod = productionperiod;
}
public String getQc() {
return this.qc;
}
public void setQc(String qc) {
this.qc = qc;
}
public String getTypes() {
return this.types;
}
public void setTypes(String types) {
this.types = types;
}
public String getNumbers() {
return this.numbers;
}
public void setNumbers(String numbers) {
this.numbers = numbers;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -