/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const UserDealTodo = sequelize.define("userDealTodo", { id: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: true, field: "id", autoIncrement: true, unique: "user_deal_todo_id_uindex" }, userId: { type: DataTypes.INTEGER, allowNull: true, defaultValue: null, comment: null, primaryKey: false, field: "user_id", autoIncrement: false }, moduleId: { type: DataTypes.INTEGER, allowNull: true, defaultValue: null, comment: null, primaryKey: false, field: "module_id", autoIncrement: false }, module: { type: DataTypes.STRING, allowNull: true, defaultValue: null, comment: null, primaryKey: false, field: "module", autoIncrement: false } }, { tableName: "user_deal_todo", comment: "", indexes: [] }); dc.models.UserDealTodo = UserDealTodo; return UserDealTodo; };