UNPKG

es-entity

Version:

ORM framework for Node js based on Ecmascript 6 and Typescript.

14 lines 372 B
class FieldMapping { fieldName; colName; columnType; primaryKey = false; constructor(fieldName, colName, columnType, primaryKey) { this.fieldName = fieldName; this.colName = colName; this.columnType = columnType; this.primaryKey = primaryKey; } } export default FieldMapping; //# sourceMappingURL=FieldMapping.js.map