Skip to content

Instantly share code, notes, and snippets.

@amita-shukla
Created January 3, 2017 10:33
Show Gist options
  • Select an option

  • Save amita-shukla/a12c0c12ae1d99933c6a0f8497ae0fbd to your computer and use it in GitHub Desktop.

Select an option

Save amita-shukla/a12c0c12ae1d99933c6a0f8497ae0fbd 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