UNPKG

@ticatec/node-common-library

Version:

A comprehensive Node.js database access framework providing robust abstractions for database connection management, SQL execution, transaction handling, pagination, and dynamic query building.

13 lines 367 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FieldType = void 0; /** * 字段的类型 */ var FieldType; (function (FieldType) { FieldType["Text"] = "Text"; FieldType["Number"] = "Number"; FieldType["Date"] = "Date"; })(FieldType = exports.FieldType || (exports.FieldType = {})); //# sourceMappingURL=Field.js.map