no message

This commit is contained in:
Kittapath 2024-02-07 12:43:49 +07:00
parent ca82158a20
commit 148fa2c81c
6 changed files with 65 additions and 30 deletions

View file

@ -54,8 +54,8 @@ export class PosLevel extends EntityBase {
@OneToMany(() => PosDict, (posDict) => posDict.posLevel)
posDicts: PosDict[];
@OneToMany(() => Profile, (profile) => profile.posLevelsId)
posLevelId: Profile;
@OneToMany(() => Profile, (profile) => profile.posLevel)
posLevels: Profile[];
}
export class CreatePosLevel {
@ -73,4 +73,3 @@ export class CreatePosLevel {
}
export type UpdatePosLevel = Partial<CreatePosLevel> & { posLevelAuthority?: PosLevelAuthority };