T_NBAState.js 880 字节
/* jshint indent: 2 */
module.exports = function (sequelize, DataTypes) {
    return sequelize.define('T_NBAState', {
        Id: {
            type: DataTypes.INTEGER(11),
            allowNull: false,
            primaryKey: true
        },
        Name: {
            type: DataTypes.STRING(50),
            allowNull: true
        },
        TypeId: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        Logo: {
            type: DataTypes.STRING(200),
            allowNull: true
        },
        OrderId: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        DateTime: {
            type: DataTypes.DATE,
            allowNull: false,
            defaultValue: sequelize.literal('CURRENT_TIMESTAMP')
        }
    }, {
        tableName: 'T_NBAState'
    });
};
//# sourceMappingURL=T_NBAState.js.map