Forked from amita-shukla/ColumnDatatypeMapping.java
Created
February 2, 2019 19:16
-
-
Save ngvinay/ee25c9122d98bf1badc74203744490c6 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