{
    table: 'tb1',
    fields: {
        id: {
            type: 'DataTypes.STRING',
            primaryKey: true,
            allowNull: false,
            autoIncrement: false,
            comment: null,
        },
        title: {
            type: 'DataTypes.TEXT',
            primaryKey: false,
            allowNull: true,
            autoIncrement: false,
            comment: null,
        },
        price: {
            type: 'DataTypes.DOUBLE',
            primaryKey: false,
            allowNull: true,
            autoIncrement: false,
            comment: null,
        },
        isActive: {
            type: 'DataTypes.INTEGER',
            primaryKey: false,
            allowNull: true,
            autoIncrement: false,
            comment: null,
        },
    },
    options: {
        tableName: 'tb1',
    },
}