T_OddsHalfLetGoal.js 1.3 KB
/* jshint indent: 2 */
module.exports = function (sequelize, DataTypes) {
    return sequelize.define('T_OddsHalfLetGoal', {
        MatchId: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        CompanyId: {
            type: DataTypes.INTEGER(11),
            allowNull: true
        },
        FirstPlate: {
            type: DataTypes.DECIMAL,
            allowNull: true
        },
        FirstHostOdds: {
            type: DataTypes.DECIMAL,
            allowNull: true
        },
        FirstQuestOdds: {
            type: DataTypes.DECIMAL,
            allowNull: true
        },
        Plate: {
            type: DataTypes.DECIMAL,
            allowNull: true
        },
        HostOdds: {
            type: DataTypes.DECIMAL,
            allowNull: true
        },
        QuestOdds: {
            type: DataTypes.DECIMAL,
            allowNull: true
        },
        UpdateTime: {
            type: DataTypes.STRING(20),
            allowNull: true
        },
        Details: {
            type: DataTypes.TEXT,
            allowNull: true
        },
        Id: {
            type: DataTypes.INTEGER(11),
            allowNull: false,
            primaryKey: true,
            autoIncrement: true
        }
    }, {
        tableName: 'T_OddsHalfLetGoal'
    });
};
//# sourceMappingURL=T_OddsHalfLetGoal.js.map