/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const Department = sequelize.define("department", { id: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: true, field: "id", autoIncrement: true, unique: "department_id_uindex" }, name: { type: DataTypes.STRING, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "name", autoIncrement: false }, dependence: { type: DataTypes.INTEGER, allowNull: true, defaultValue: null, comment: "上级部门/从属", primaryKey: false, field: "dependence", autoIncrement: false }, delete: { type: DataTypes.BOOLEAN, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "delete", autoIncrement: false }, }, { tableName: "department", comment: "", indexes: [] }); dc.models.Department = Department; return Department; };