/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const ReserveItemReport = sequelize.define("reserveItemReport", { id: { type: DataTypes.INTEGER, allowNull: false, primaryKey: true, field: "id", autoIncrement: true, }, year: { type: DataTypes.INTEGER, allowNull: true, field: "year", }, month: { type: DataTypes.INTEGER, allowNull: true, field: "month", }, path: { type: DataTypes.STRING, allowNull: false, field: "path", }, type: { type: DataTypes.STRING, allowNull: true, field: "type", }, name: { type: DataTypes.STRING, allowNull: false, field: "name", } }, { tableName: "reserve_item_report", }); dc.models.ReserveItemReport = ReserveItemReport; return ReserveItemReport; };