T_WordRank.ts 990 字节
/* jshint indent: 2 */

module.exports = function(sequelize:any, DataTypes:any) {
  return sequelize.define('T_WordRank', {
    Location: {
      type: DataTypes.INTEGER(6),
      allowNull: true
    },
    Sex: {
      type: DataTypes.INTEGER(6),
      allowNull: true
    },
    Month: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    TeamId: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    TeamName: {
      type: DataTypes.STRING(30),
      allowNull: true
    },
    Rank: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    RankUp: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    Score: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    ScoreUp: {
      type: DataTypes.INTEGER(11),
      allowNull: true
    },
    Id: {
      type: DataTypes.INTEGER(11),
      allowNull: false,
      primaryKey: true,
      autoIncrement: true
    }
  }, {
    tableName: 'T_WordRank'
  });
};