products.java
来自「交易撮合系统是一套买卖信息沟通的平台」· Java 代码 · 共 43 行
JAVA
43 行
package domain;
import java.io.Serializable;
public class Products implements Serializable{
private int productsid;
private String title;
private int typeid;
private String photo;
private String remark;
public int getProductsid() {
return productsid;
}
public void setProductsid(int productsid) {
this.productsid = productsid;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getTypeid() {
return typeid;
}
public void setTypeid(int typeid) {
this.typeid = typeid;
}
public String getPhoto() {
return photo;
}
public void setPhoto(String photo) {
this.photo = photo;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?