mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-19 07:20:00 +00:00
43 lines
801 B
TypeScript
43 lines
801 B
TypeScript
import { Column, Entity, OneToMany, PrimaryGeneratedColumn } from "typeorm";
|
|
import { CaseNote } from "./CaseNote";
|
|
|
|
@Entity("cases")
|
|
export class Case {
|
|
@PrimaryGeneratedColumn() id: number;
|
|
|
|
@Column() guild_id: string;
|
|
|
|
@Column() case_number: number;
|
|
|
|
@Column() user_id: string;
|
|
|
|
@Column() user_name: string;
|
|
|
|
@Column() mod_id: string;
|
|
|
|
@Column() mod_name: string;
|
|
|
|
@Column() type: number;
|
|
|
|
@Column() audit_log_id: string;
|
|
|
|
@Column() created_at: string;
|
|
|
|
@Column() is_hidden: boolean;
|
|
|
|
@Column() pp_id: string;
|
|
|
|
@Column() pp_name: string;
|
|
|
|
/**
|
|
* ID of the channel and message where this case was logged.
|
|
* Format: "channelid-messageid"
|
|
*/
|
|
@Column() log_message_id: string;
|
|
|
|
@OneToMany(
|
|
type => CaseNote,
|
|
note => note.case,
|
|
)
|
|
notes: CaseNote[];
|
|
}
|