Merge branch 'develop' of github.com:Frappet/bma-ehr-organization into develop
This commit is contained in:
commit
ff46ce568b
1 changed files with 28 additions and 2 deletions
|
|
@ -91,7 +91,7 @@ export class CreatePosDict {
|
|||
posLevelId: string;
|
||||
|
||||
@Column()
|
||||
posExecutiveId: string;
|
||||
posExecutiveId?: string;
|
||||
|
||||
@Column()
|
||||
posDictExecutiveField: string;
|
||||
|
|
@ -103,4 +103,30 @@ export class CreatePosDict {
|
|||
isSpecial: boolean;
|
||||
}
|
||||
|
||||
export type UpdatePosDict = Partial<CreatePosDict>;
|
||||
export class UpdatePosDict {
|
||||
@Column()
|
||||
posDictName: string;
|
||||
|
||||
@Column()
|
||||
posDictField: string;
|
||||
|
||||
@Column("uuid")
|
||||
posTypeId: string;
|
||||
|
||||
@Column("uuid")
|
||||
posLevelId: string;
|
||||
|
||||
@Column()
|
||||
posExecutiveId?: string;
|
||||
|
||||
@Column()
|
||||
posDictExecutiveField: string;
|
||||
|
||||
@Column()
|
||||
posDictArea: string;
|
||||
|
||||
@Column()
|
||||
isSpecial: boolean;
|
||||
}
|
||||
|
||||
// export type UpdatePosDict = Partial<CreatePosDict>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue