diff --git a/src/model/report.model.js b/src/model/report.model.js index 61989c8..2bbfe78 100644 --- a/src/model/report.model.js +++ b/src/model/report.model.js @@ -14,6 +14,11 @@ const Report = seq.define("chicken_report", { allowNull: false, comment: "鸡笼号", }, + report_info: { + type: DataTypes.STRING, + allowNull: false, + comment: "预警信息", + }, type_id: { type: DataTypes.INTEGER, allowNull: false, @@ -40,9 +45,15 @@ const Report = seq.define("chicken_report", { allowNull: false, comment: "处理人", }, + handle_time: { + type: DataTypes.DATE, + allowNull: false, + defaultValue: DataTypes.NOW, + comment: "处理时间", + }, }); // 强制同步数据库(创建数据表) -// Report.sync({ force: true }); +Report.sync({ force: true }); module.exports = Report;