📄 barvalue.java
字号:
package photo;
public class BarValue {
private double barValue;
private String rowKey;
private String columnKey;
public double getBarValue() {
return barValue;
}
public void setBarValue(double barValue) {
this.barValue = barValue;
}
public String getColumnKey() {
return columnKey;
}
public void setColumnKey(String columnKey) {
this.columnKey = columnKey;
}
public String getRowKey() {
return rowKey;
}
public void setRowKey(String rowKey) {
this.rowKey = rowKey;
}
public BarValue(){
}
public BarValue(double barValue, String rowKey, String columnKey) {
super();
this.barValue = barValue;
this.rowKey = rowKey;
this.columnKey = columnKey;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -