83 lines
1.6 KiB
JavaScript
83 lines
1.6 KiB
JavaScript
const mongoose = require('mongoose');
|
|
|
|
const requestSchema = new mongoose.Schema({
|
|
senderCompanyId: {
|
|
type: String,
|
|
required: true,
|
|
index: true
|
|
},
|
|
recipientCompanyId: {
|
|
type: String,
|
|
required: true,
|
|
index: true
|
|
},
|
|
subject: {
|
|
type: String,
|
|
required: false,
|
|
trim: true,
|
|
default: ''
|
|
},
|
|
text: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
files: [{
|
|
id: { type: String },
|
|
name: { type: String },
|
|
url: { type: String },
|
|
type: { type: String },
|
|
size: { type: Number },
|
|
storagePath: { type: String },
|
|
uploadedAt: {
|
|
type: Date,
|
|
default: Date.now
|
|
}
|
|
}],
|
|
productId: {
|
|
type: String,
|
|
ref: 'BuyProduct'
|
|
},
|
|
status: {
|
|
type: String,
|
|
enum: ['pending', 'accepted', 'rejected'],
|
|
default: 'pending'
|
|
},
|
|
response: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
responseFiles: [{
|
|
id: { type: String },
|
|
name: { type: String },
|
|
url: { type: String },
|
|
type: { type: String },
|
|
size: { type: Number },
|
|
storagePath: { type: String },
|
|
uploadedAt: {
|
|
type: Date,
|
|
default: Date.now
|
|
}
|
|
}],
|
|
respondedAt: {
|
|
type: Date,
|
|
default: null
|
|
},
|
|
createdAt: {
|
|
type: Date,
|
|
default: Date.now,
|
|
index: true
|
|
},
|
|
updatedAt: {
|
|
type: Date,
|
|
default: Date.now
|
|
}
|
|
});
|
|
|
|
// Индексы для оптимизации поиска
|
|
requestSchema.index({ senderCompanyId: 1, createdAt: -1 });
|
|
requestSchema.index({ recipientCompanyId: 1, createdAt: -1 });
|
|
requestSchema.index({ senderCompanyId: 1, recipientCompanyId: 1 });
|
|
requestSchema.index({ subject: 1, createdAt: -1 });
|
|
|
|
module.exports = mongoose.model('Request', requestSchema);
|