Created
January 3, 2017 10:33
-
-
Save amita-shukla/a12c0c12ae1d99933c6a0f8497ae0fbd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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