bfa72193f2763514aa1446f56d1cc7ad7f9f2566.svn-base 353 B

123456789101112131415161718192021222324
  1. package com.persistence.databak;
  2. public class ColomObj{
  3. String colName = "";
  4. String colType = "";
  5. public String getColName() {
  6. return colName;
  7. }
  8. public void setColName(String colName) {
  9. this.colName = colName;
  10. }
  11. public String getColType() {
  12. return colType;
  13. }
  14. public void setColType(String colType) {
  15. this.colType = colType;
  16. }
  17. }