/* eslint-disable*/ 'use strict'; module.exports = dc => { const DataTypes = dc.ORM; const sequelize = dc.orm; const ChatSchemeFileCache = sequelize.define("chatSchemeFileCache", { dataId: { type: DataTypes.STRING, allowNull: false, defaultValue: null, comment: "对话记录的唯一标识", primaryKey: true, field: "data_id", autoIncrement: false }, fileUrl: { type: DataTypes.STRING, allowNull: false, defaultValue: null, comment: "文件链接", primaryKey: false, field: "file_url", autoIncrement: false } }, { tableName: "chat_scheme_file_cache", comment: "缓存AI对话生成的行业方案文件链接用于下载", indexes: [] }); dc.models.ChatSchemeFileCache = ChatSchemeFileCache; return ChatSchemeFileCache; };