Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ngvinay/ee25c9122d98bf1badc74203744490c6 to your computer and use it in GitHub Desktop.

Select an option

Save ngvinay/ee25c9122d98bf1badc74203744490c6 to your computer and use it in GitHub Desktop.
public class ColumnDatatypeMapping {
String colName;
String colType;
public ColumnDatatypeMapping(String colName, String colType) {
super();
this.colName = colName;
this.colType = colType;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment