Files
yunrui_asset/backend/models/TicketOperationRecord.js
T
zhang1106 63f0cb570e refactor: 统一代码风格并迁移至 ESLint 新配置
style(backend): 格式化模型文件代码
style(frontend): 调整组件代码格式
chore: 删除旧 ESLint 配置并添加新配置
refactor(backend): 重构模型定义语法
style: 统一箭头函数和对象属性简写
2026-03-27 19:12:16 +08:00

95 lines
2.1 KiB
JavaScript

const { DataTypes } = require('sequelize');
const { sequelize } = require('../db');
const TicketOperationRecord = sequelize.define(
'TicketOperationRecord',
{
recordId: {
type: DataTypes.STRING,
primaryKey: true,
allowNull: false,
unique: true,
},
ticketId: {
type: DataTypes.STRING,
allowNull: false,
comment: '关联工单ID',
},
operationType: {
type: DataTypes.STRING,
allowNull: false,
comment: '操作类型: create/update/status_change/assignment/comment/attachment',
},
operationDescription: {
type: DataTypes.TEXT,
comment: '操作描述',
},
operatorId: {
type: DataTypes.STRING,
allowNull: false,
comment: '操作人ID',
},
operatorName: {
type: DataTypes.STRING,
allowNull: false,
comment: '操作人姓名',
},
operatorRole: {
type: DataTypes.STRING,
comment: '操作人角色',
},
operationSteps: {
type: DataTypes.JSON,
defaultValue: [],
comment: '操作步骤详情',
},
spareParts: {
type: DataTypes.JSON,
defaultValue: [],
comment: '使用的备件列表',
},
beforeState: {
type: DataTypes.JSON,
comment: '操作前状态',
},
afterState: {
type: DataTypes.JSON,
comment: '操作后状态',
},
duration: {
type: DataTypes.INTEGER,
comment: '操作耗时(分钟)',
},
result: {
type: DataTypes.STRING,
comment: '操作结果: success/failed/partial',
},
notes: {
type: DataTypes.TEXT,
comment: '备注信息',
},
attachments: {
type: DataTypes.JSON,
defaultValue: [],
comment: '附件',
},
metadata: {
type: DataTypes.JSON,
defaultValue: {},
comment: '扩展字段',
},
},
{
tableName: 'ticket_operation_records',
timestamps: true,
indexes: [
{ fields: ['ticketId'] },
{ fields: ['operatorId'] },
{ fields: ['operationType'] },
{ fields: ['createdAt'] },
],
}
);
module.exports = TicketOperationRecord;