123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package com.persistence.DBdll.adapter.assitant;
- public class TableInfo{
- /** 表classId */
- private int classId;
- /** 表英文名. */
- private String tableName;
- /** 数据表类型 */
- private String type;
- /** 主键字段,可以是多个字段组合 */
- private String primaryKey;
- private String catche;
- /** 数据库中是否存在 */
- private String exist;
- /** 数据库链接Id */
- private String dataSource;
- /** 是否校验 */
- private String validate;
- private String Descritpion;
- public int getClassId() {
- return classId;
- }
- public void setClassId(int classId) {
- this.classId = classId;
- }
- /**
- * 表名称 return
- **/
- public String getTableName() {
- return tableName;
- }
- public void setTableName(String tableName) {
- this.tableName = tableName;
- }
- /**
- * 表在系统中类型 return
- **/
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- /**
- * 主键组合,可以多个字段组合决定一条数据 return
- **/
- public String getPrimaryKey() {
- return primaryKey == null ? "" : primaryKey;
- }
- public void setPrimaryKey(String primaryKey) {
- this.primaryKey = primaryKey;
- }
- public String getCatche() {
- return catche;
- }
- public void setCatche(String catche) {
- this.catche = catche;
- }
- /**
- * 表在数据库中是否存在 return
- **/
- public String getExist() {
- return exist;
- }
- public void setExist(String exist) {
- this.exist = exist;
- }
- /**
- * 使用数据源链接编码 return
- **/
- public String getDataSource() {
- return dataSource;
- }
- public void setDataSource(String dataSource) {
- this.dataSource = dataSource;
- }
- /**
- * 是否校验 return
- **/
- public String getValidate() {
- return validate;
- }
- public void setValidate(String validate) {
- this.validate = validate;
- }
- public String getDescritpion() {
- return Descritpion == null ? "" : Descritpion;
- }
- public void setDescritpion(String descritpion) {
- Descritpion = descritpion;
- }
- }
|