add portfolio
This commit is contained in:
parent
6ad6788642
commit
5d1153abf3
3 changed files with 70 additions and 0 deletions
34
src/entities/Portfolio.ts
Normal file
34
src/entities/Portfolio.ts
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
import { Entity, Column, ManyToOne, JoinColumn, OneToOne } from "typeorm";
|
||||
import { EntityBase } from "./base/Base";
|
||||
import { Evaluation } from "./Evaluation";
|
||||
|
||||
@Entity("portfolio")
|
||||
export class Portfolio extends EntityBase {
|
||||
@Column({
|
||||
comment: "Id การทำรายการระบบประเมิน",
|
||||
length: 40,
|
||||
default: "00000000-0000-0000-0000-000000000000",
|
||||
})
|
||||
evaluationId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อเอกสาร/ผลงาน",
|
||||
default: null,
|
||||
})
|
||||
name: string;
|
||||
|
||||
@Column({
|
||||
type: "longtext",
|
||||
nullable: true,
|
||||
comment: "รายละเอียดเอกสาร/ผลงาน",
|
||||
default: null,
|
||||
})
|
||||
detail: string;
|
||||
|
||||
@ManyToOne(() => Evaluation, (Evaluation) => Evaluation.portfolios)
|
||||
@JoinColumn({ name: "evaluationId" })
|
||||
evaluations: Evaluation;
|
||||
}
|
||||
|
||||
export type UpdatePortfolio = Partial<Portfolio>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue