📄 orderproduct.java
字号:
package cn.bway.foreigntrade.order.orderproduct.model;
/**
* Orderproduct generated by MyEclipse Persistence Tools
*/
public class Orderproduct implements java.io.Serializable {
// Fields
private String productid;
private String id;
private String productcode;
private String ordercode;
private String sizes;
private String specs;
private String stuff;
private String colors;
private String units;
private String money;
private String item;
private String image;
private String numbers;
// Constructors
public Orderproduct(String id, String productcode, String ordercode, String sizes, String specs, String stuff, String colors, String units, String money, String item, String image, String numbers) {
super();
this.id = id;
this.productcode = productcode;
this.ordercode = ordercode;
this.sizes = sizes;
this.specs = specs;
this.stuff = stuff;
this.colors = colors;
this.units = units;
this.money = money;
this.item = item;
this.image = image;
this.numbers = numbers;
}
public String getNumbers() {
return numbers;
}
public void setNumbers(String numbers) {
this.numbers = numbers;
}
/** default constructor */
public Orderproduct() {
}
/** full constructor */
public Orderproduct(String id, String productcode, String ordercode, String sizes, String specs, String stuff, String colors, String units, String money, String item, String image) {
this.id = id;
this.productcode = productcode;
this.ordercode = ordercode;
this.sizes = sizes;
this.specs = specs;
this.stuff = stuff;
this.colors = colors;
this.units = units;
this.money = money;
this.item = item;
this.image = image;
}
// Property accessors
public String getProductid() {
return this.productid;
}
public void setProductid(String Productid) {
this.productid = Productid;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getProductcode() {
return this.productcode;
}
public void setProductcode(String productcode) {
this.productcode = productcode;
}
public String getOrdercode() {
return this.ordercode;
}
public void setOrdercode(String ordercode) {
this.ordercode = ordercode;
}
public String getSizes() {
return this.sizes;
}
public void setSizes(String sizes) {
this.sizes = sizes;
}
public String getSpecs() {
return this.specs;
}
public void setSpecs(String specs) {
this.specs = specs;
}
public String getStuff() {
return this.stuff;
}
public void setStuff(String stuff) {
this.stuff = stuff;
}
public String getColors() {
return this.colors;
}
public void setColors(String colors) {
this.colors = colors;
}
public String getUnits() {
return this.units;
}
public void setUnits(String units) {
this.units = units;
}
public String getMoney() {
return this.money;
}
public void setMoney(String money) {
this.money = money;
}
public String getItem() {
return this.item;
}
public void setItem(String item) {
this.item = item;
}
public String getImage() {
return this.image;
}
public void setImage(String image) {
this.image = image;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -