/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const CustomerContactsFollowup = sequelize.define("customerContactsFollowup", { id: { type: DataTypes.INTEGER, allowNull: true, primaryKey: true, field: "id", autoIncrement: true, }, customer: { type: DataTypes.STRING, allowNull: true, field: "customer", }, items: { type: DataTypes.STRING, allowNull: false, field: "items", }, department: { type: DataTypes.STRING, allowNull: false, field: "department", }, sale: { type: DataTypes.STRING, allowNull: false, field: "sale", }, updatetime: { type: DataTypes.DATE, allowNull: false, field: "updatetime", }, customerContacts: { type: DataTypes.STRING, allowNull: false, field: "customer_contacts", }, phone: { type: DataTypes.STRING, allowNull: false, field: "phone", }, visitStyle: { type: DataTypes.STRING, allowNull: false, field: "visit_style", }, itemText: { type: DataTypes.STRING, allowNull: false, field: "item_text", } }, { tableName: "customer_contacts_followup", }); dc.models.CustomerContactsFollowup = CustomerContactsFollowup; return CustomerContactsFollowup; };