📄 colinfo.java
字号:
/*
* Copyright (c) 2008 胜利油田胜利软件有限责任公司. All rights reserved.
*/
package com.victorysoft.code.bean;
/**
*
* @author 于景洋
* @newtime Oct 21, 2008,9:12:48 AM
* @version 1.0
* @see
* @since JDK 1.5.0
*/
public class ColInfo {
// 列名
private String name;
// 数据类型
private String type;
// 长度
private int length;
// 整数位
private String precision;
// 小数位
private String scale;
// 注释
private String comt;
// 是否为主键
private boolean key;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public int getLength() {
return length;
}
public void setLength(int length) {
this.length = length;
}
public String getPrecision() {
return precision;
}
public void setPrecision(String precision) {
this.precision = precision;
}
public String getScale() {
return scale;
}
public void setScale(String scale) {
this.scale = scale;
}
public String getComt() {
return comt;
}
public void setComt(String comt) {
this.comt = comt;
}
public boolean isKey() {
return key;
}
public void setKey(boolean key) {
this.key = key;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -