colsresult.java

来自「本公司开发项目中本人做的公共类文件。如文件的操作」· Java 代码 · 共 27 行

JAVA
27
字号
package com.intohotel.util;

public class ColsResult {

	private String tableName;
	private String colName;
	private String colType;
	public String getColName() {
		return colName;
	}
	public void setColName(String colName) {
		this.colName = colName;
	}
	public String getColType() {
		return colType;
	}
	public void setColType(String colType) {
		this.colType = colType;
	}
	public String getTableName() {
		return tableName;
	}
	public void setTableName(String tableName) {
		this.tableName = tableName;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?