📄 recordbean.java
字号:
package com.unimas.dbsync.entity;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 2008-12-12
* Time: 17:04:40
*/
/**
* 设置数据库中的记录信息和源端的字段信息
*/
public class Recordbean implements BaseBean {
private String records;
private String CilentTabName;
private String TabColumnName;
private int count;
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public String getTabColumnName() {
return TabColumnName;
}
public void setTabColumnName(String tabColumnName) {
TabColumnName = tabColumnName;
}
public String getCilentTabName() {
return CilentTabName;
}
public void setCilentTabName(String cilentTabName) {
CilentTabName = cilentTabName;
}
public String getRecords() {
return records;
}
public void setRecords(String records) {
this.records = records;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -