mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1006 B
TypeScript
67 lines
1006 B
TypeScript
import {
|
|
getModelForClass,
|
|
prop,
|
|
DocumentType,
|
|
Ref,
|
|
modelOptions,
|
|
Severity,
|
|
index,
|
|
} from '@typegoose/typegoose';
|
|
import { Base, TimeStamps } from '@typegoose/typegoose/lib/defaultClasses';
|
|
import type { Types } from 'mongoose';
|
|
import { User } from './user/user';
|
|
|
|
/**
|
|
* 聊天会话
|
|
*/
|
|
@modelOptions({
|
|
options: {
|
|
allowMixed: Severity.ALLOW,
|
|
},
|
|
})
|
|
@index({ bucketName: 1, objectName: 1 })
|
|
export class File extends TimeStamps implements Base {
|
|
_id: Types.ObjectId;
|
|
id: string;
|
|
|
|
@prop()
|
|
etag: string;
|
|
|
|
@prop({ ref: () => User })
|
|
userId?: Ref<User>;
|
|
|
|
@prop()
|
|
bucketName: string;
|
|
|
|
@prop()
|
|
objectName: string;
|
|
|
|
@prop()
|
|
url: string;
|
|
|
|
/**
|
|
* 文件大小, 单位: Byte
|
|
*/
|
|
@prop()
|
|
size: number;
|
|
|
|
/**
|
|
* 浏览量
|
|
*/
|
|
@prop({
|
|
default: 0,
|
|
})
|
|
views: number;
|
|
|
|
@prop()
|
|
metaData: object;
|
|
}
|
|
|
|
export type FileDocument = DocumentType<File>;
|
|
|
|
const model = getModelForClass(File);
|
|
|
|
export type FileModel = typeof model;
|
|
|
|
export default model;
|