📄 excelfield.java
字号:
package com.set.utils;
/**
* <p>
* Title: 代码生成框架
* </p>
* <p>
* Description:
* </p>
* <p>
* Copyright: Copyright (c) 2005
* </p>
* <p>
* Company:
* </p>
*
* @author zhifeng
* @version 1.0
*/
public class ExcelField {
private String column;
private String row;
private String type;
private String value;
public ExcelField() {
}
public ExcelField(String row, String col, String value) {
this.column = col;
this.row = row;
this.value = value;
this.type = "";
}
public String getColumn() {
return column;
}
public void setColumn(String column) {
this.column = column;
}
public String getRow() {
return row;
}
public void setRow(String row) {
this.row = row;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -