'use strict'; module.exports = app => { const DataTypes = app.Sequelize; const sequelize = app.model; const attributes = { adminId: { type: DataTypes.INTEGER(10).UNSIGNED, allowNull: false, defaultValue: null, primaryKey: true, autoIncrement: true, comment: "管理员ID", field: "admin_id" }, username: { type: DataTypes.STRING(20), allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "username" }, password: { type: DataTypes.STRING(255), allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "password" }, roleId: { type: DataTypes.INTEGER(10).UNSIGNED, allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "role_id" }, adminStatus: { type: DataTypes.INTEGER(1).UNSIGNED, allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "admin_status" }, loginIp: { type: DataTypes.STRING(15), allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "login_ip" }, loginTime: { type: DataTypes.DATE, allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "login_time" }, loginCount: { type: DataTypes.INTEGER(10).UNSIGNED, allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: "登录次数", field: "login_count" }, adminToken: { type: DataTypes.STRING(255), allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "admin_token" }, adminCode: { type: DataTypes.CHAR(6), allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "admin_code" }, otherAuth: { type: DataTypes.STRING(255), allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: null, field: "other_auth" }, actionUser: { type: DataTypes.INTEGER(10).UNSIGNED, allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: "操作user_id", field: "action_user" }, updateTime: { type: DataTypes.DATE, allowNull: false, defaultValue: sequelize.literal('CURRENT_TIMESTAMP'), primaryKey: false, autoIncrement: false, comment: "变动时间", field: "update_time" }, createTime: { type: DataTypes.DATE, allowNull: false, defaultValue: null, primaryKey: false, autoIncrement: false, comment: "创建时间", field: "create_time" } }; const options = { tableName: "szj_admin_user", comment: "", indexes: [{ name: "role_id", unique: false, type: "BTREE", fields: ["role_id"] }, { name: "username", unique: false, type: "BTREE", fields: ["username"] }] }; const SzjAdminUserModel = sequelize.define("szjAdminUserModel", attributes, options); return SzjAdminUserModel; };