ms_soccer_state.js
881 字节
/* jshint indent: 2 */
module.exports = function (sequelize, DataTypes) {
return sequelize.define('ms_soccer_state', {
ms_state_id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true,
autoIncrement: true
},
createdAt: {
type: DataTypes.DATE,
allowNull: true
},
updatedAt: {
type: DataTypes.DATE,
allowNull: true
},
info_state_id: {
type: DataTypes.BIGINT,
allowNull: true
},
sportdt_id: {
type: DataTypes.BIGINT,
allowNull: true
},
info_state_name: {
type: DataTypes.STRING(100),
allowNull: true
}
}, {
tableName: 'ms_soccer_state'
});
};
//# sourceMappingURL=ms_soccer_state.js.map