parent
2e96f65259
commit
1fb0d87b02
@ -0,0 +1,49 @@
|
||||
package com.domain;
|
||||
|
||||
public class Production {
|
||||
private int pid;
|
||||
private String price;
|
||||
private String prom;
|
||||
private String classify;
|
||||
private String store;
|
||||
|
||||
public Production() {}
|
||||
public Production(int pid, String price, String prom, String classify, String store) {
|
||||
this.pid=pid;
|
||||
this.price=price;
|
||||
this.prom=prom;
|
||||
this.classify=classify;
|
||||
this.store=store;
|
||||
}
|
||||
public int getPid() {
|
||||
return pid;
|
||||
}
|
||||
public void setPid(int pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
public String getPrice() {
|
||||
return price;
|
||||
}
|
||||
public void setPrice(String price) {
|
||||
this.price = price;
|
||||
}
|
||||
public String getProm() {
|
||||
return prom;
|
||||
}
|
||||
public void setProm(String prom) {
|
||||
this.prom = prom;
|
||||
}
|
||||
public String getClassify() {
|
||||
return classify;
|
||||
}
|
||||
public void setClassify(String classify) {
|
||||
this.classify = classify;
|
||||
}
|
||||
public String getStore() {
|
||||
return store;
|
||||
}
|
||||
public void setStore(String store) {
|
||||
this.store = store;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue