/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const HideDangerReport = sequelize.define("hideDangerReport", { id: { type: DataTypes.INTEGER, allowNull: false, defaultValue: null, comment: null, primaryKey: true, field: "id", autoIncrement: true, unique: "hide_danger_report_id_uindex" }, siteCount: { type: DataTypes.INTEGER, allowNull: false, defaultValue: "0", comment: null, primaryKey: false, field: "site_count", autoIncrement: false }, rectifyCount: { type: DataTypes.INTEGER, allowNull: false, defaultValue: "0", comment: null, primaryKey: false, field: "rectify_count", autoIncrement: false }, completedRectifyCount: { type: DataTypes.INTEGER, allowNull: false, defaultValue: "0", comment: null, primaryKey: false, field: "completed_rectify_count", autoIncrement: false }, uncompletedRectifyCount: { type: DataTypes.INTEGER, allowNull: false, defaultValue: "0", comment: null, primaryKey: false, field: "uncompleted_rectify_count", autoIncrement: false }, report: { type: DataTypes.STRING, allowNull: true, defaultValue: null, comment: null, primaryKey: false, field: "report", autoIncrement: false }, type: { type: DataTypes.STRING, allowNull: true, defaultValue: null, comment: "month 月 / quarter 季度 / year 年", primaryKey: false, field: "type", autoIncrement: false }, time: { type: DataTypes.STRING, allowNull: false, defaultValue: null, comment: null, primaryKey: false, field: "time", autoIncrement: false } }, { tableName: "hide_danger_report", comment: "", indexes: [] }); dc.models.HideDangerReport = HideDangerReport; return HideDangerReport; };