123456789101112131415161718192021222324 |
- package com.persistence.databak;
- public class ColomObj{
- String colName = "";
- 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;
- }
- }
|