ADD file via upload

B/S
p7ajvprf6 3 years ago
parent ec597e78d0
commit b43019a59f

@ -0,0 +1,84 @@
package com.campus.domain;
import com.sun.org.apache.xpath.internal.operations.Bool;
import java.util.Arrays;
public class Goods {
private String username;
private String type;
private String commit;
private String price;
private int gid;
private String img;
private String phone;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getCommit() {
return commit;
}
public void setCommit(String commit) {
this.commit = commit;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
public int getGid() {
return gid;
}
public void setGid(int gid) {
this.gid = gid;
}
public String getImg() {
return img;
}
public void setImg(String img) {
this.img = img;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
@Override
public String toString() {
return "Goods{" +
"username='" + username + '\'' +
", type='" + type + '\'' +
", commit='" + commit + '\'' +
", price='" + price + '\'' +
", gid=" + gid +
", img='" + img + '\'' +
", phone='" + phone + '\'' +
'}';
}
}
Loading…
Cancel
Save