no message

This commit is contained in:
kittapath 2024-11-27 13:53:49 +07:00
parent 1155be4116
commit 9ec42fd5d9
6 changed files with 311 additions and 0 deletions

37
src/entities/ApiKey.ts Normal file
View file

@ -0,0 +1,37 @@
import { Entity, Column, ManyToMany, OneToMany } from "typeorm";
import { EntityBase } from "./base/Base";
import { ApiName } from "./ApiName";
import { ApiHistory } from "./ApiHistory";
@Entity("apiKey")
export class ApiKey extends EntityBase {
@Column({
nullable: true,
comment: "ชื่อ",
length: 255,
default: null,
})
name: string;
@Column({
nullable: true,
comment: "keyApi",
length: 255,
default: null,
})
keyApi: string;
@ManyToMany(() => ApiName, (apiName) => apiName.apiKeys)
apiNames: ApiName[];
@OneToMany(() => ApiHistory, (v) => v.apiKey)
apiHistorys: ApiHistory[];
}
export class CreateApiKey {
@Column()
name: string;
@Column()
apiId: string[];
}