excelfield.java
来自「本文论述了一个前台笔记本销售系统的开发过程」· Java 代码 · 共 73 行
JAVA
73 行
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 + =
减小字号Ctrl + -
显示快捷键?