ms_basketball_company.ts 935 字节
/* jshint indent: 2 */

module.exports = function(sequelize:any, DataTypes:any) {
  return sequelize.define('ms_basketball_company', {
    ms_nba_company_id: {
      type: DataTypes.INTEGER(11),
      allowNull: false,
      primaryKey: true,
      autoIncrement: true
    },
    createdAt: {
      type: DataTypes.DATE,
      allowNull: true
    },
    updatedAt: {
      type: DataTypes.DATE,
      allowNull: true
    },
    info_nba_company_id: {
      type: DataTypes.BIGINT,
      allowNull: true
    },
    sportdt_nba_company_id: {
      type: DataTypes.BIGINT,
      allowNull: true
    },
    info_nba_company_name: {
      type: DataTypes.STRING(100),
      allowNull: true
    },
    sportdt_nba_company_name: {
      type: DataTypes.STRING(100),
      allowNull: true
    },
    info_nba_company_type: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    }
  }, {
    tableName: 'ms_basketball_company'
  });
};