/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const AnspectionNotificationPhone = sequelize.define("inspection_notification_phone", { id: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: true, field: "id", autoIncrement: true, unique: "assess_id_uindex" }, phone: { type: DataTypes.STRING, allowNull: true, defaultValue: null, comment: "联系电话", primaryKey: false, field: "phone", autoIncrement: false }, }, { tableName: "inspection_notification_phone", comment: "", indexes: [] }); dc.models.AnspectionNotificationPhone = AnspectionNotificationPhone; return AnspectionNotificationPhone; };