Entity Create Function

This commit is contained in:
AdisakKanthawilang 2024-01-31 16:15:55 +07:00
parent d17e31fbad
commit c81dacadc6
3 changed files with 36 additions and 0 deletions

View file

@ -51,3 +51,19 @@ export class PosLevel extends EntityBase {
@OneToMany(() => PosDict, (posDict) => posDict.posLevel)
posDicts: PosDict[];
}
export class CreatePosLevel {
@Column()
posLevelName: string;
@Column()
posLevelRank: number;
@Column()
posLevelAuthority: string;
@Column("uuid")
posTypeId: string;
}
export type UpdatePosLevel = Partial<CreatePosLevel>;