You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
/* eslint-disable*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = dc => {
|
|
const DataTypes = dc.ORM;
|
|
const sequelize = dc.orm;
|
|
const AlarmConfirmLog = sequelize.define("alarmConfirmLog", {
|
|
id: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
defaultValue: null,
|
|
comment: null,
|
|
primaryKey: true,
|
|
field: "id",
|
|
autoIncrement: true,
|
|
unique: "alarm_confirm_log_id_uindex"
|
|
},
|
|
pepUserId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: true,
|
|
defaultValue: null,
|
|
comment: null,
|
|
primaryKey: false,
|
|
field: "pep_user_id",
|
|
autoIncrement: false
|
|
},
|
|
projectCorrelationId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
defaultValue: null,
|
|
comment: null,
|
|
primaryKey: false,
|
|
field: "project_correlation_id",
|
|
autoIncrement: false
|
|
},
|
|
alarmInfo: {
|
|
type: DataTypes.JSON,
|
|
allowNull: false,
|
|
defaultValue: null,
|
|
comment: null,
|
|
primaryKey: false,
|
|
field: "alarm_info",
|
|
autoIncrement: false
|
|
},
|
|
confirmTime: {
|
|
type: DataTypes.DATE,
|
|
allowNull: false,
|
|
defaultValue: null,
|
|
comment: null,
|
|
primaryKey: false,
|
|
field: "confirm_time",
|
|
autoIncrement: false
|
|
},
|
|
confirmContent: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
defaultValue: null,
|
|
comment: null,
|
|
primaryKey: false,
|
|
field: "confirm_content",
|
|
autoIncrement: false
|
|
}
|
|
}, {
|
|
tableName: "alarm_confirm_log",
|
|
comment: "",
|
|
indexes: []
|
|
});
|
|
dc.models.AlarmConfirmLog = AlarmConfirmLog;
|
|
return AlarmConfirmLog;
|
|
};
|