changedproduct.java
来自「电话号码查询系统 要求有电话录入」· Java 代码 · 共 31 行
JAVA
31 行
public class ChangedProduct {
private int id;
private int col;
private String value;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public int getCol() {
return col;
}
public void setCol(int col) {
this.col = col;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?