|
|
@ -4,7 +4,7 @@ |
|
|
|
module.exports = dc => { |
|
|
|
const DataTypes = dc.ORM; |
|
|
|
const sequelize = dc.orm; |
|
|
|
const ReserveItemReport = sequelize.define("reserveItemReport", { |
|
|
|
const CustomerContactsFollowup = sequelize.define("customerContactsFollowup", { |
|
|
|
id: { |
|
|
|
type: DataTypes.INTEGER, |
|
|
|
allowNull: false, |
|
|
@ -60,6 +60,6 @@ module.exports = dc => { |
|
|
|
}, { |
|
|
|
tableName: "customer_contacts_followup", |
|
|
|
}); |
|
|
|
dc.models.ReserveItemReport = ReserveItemReport; |
|
|
|
return ReserveItemReport; |
|
|
|
dc.models.CustomerContactsFollowup = CustomerContactsFollowup; |
|
|
|
return CustomerContactsFollowup; |
|
|
|
}; |