You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
teeth/code/Production.java

50 lines
974 B

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;
}
}