edit type status profile
This commit is contained in:
parent
c60beef7e3
commit
9bf7ddf267
4 changed files with 39 additions and 15 deletions
|
|
@ -45,11 +45,10 @@ export class ProfileActposition extends EntityBase {
|
|||
position: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "สถานะ",
|
||||
default: null,
|
||||
default: false,
|
||||
})
|
||||
status: string;
|
||||
status: boolean;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
|
|
@ -80,7 +79,7 @@ export class CreateProfileActposition {
|
|||
dateEnd: Date | null;
|
||||
posNo: string | null;
|
||||
position: string | null;
|
||||
status: string | null;
|
||||
status: boolean;
|
||||
}
|
||||
|
||||
export class CreateProfileActpositionEmployee {
|
||||
|
|
@ -89,7 +88,7 @@ export class CreateProfileActpositionEmployee {
|
|||
dateEnd: Date | null;
|
||||
posNo: string | null;
|
||||
position: string | null;
|
||||
status: string | null;
|
||||
status: boolean;
|
||||
}
|
||||
|
||||
export type UpdateProfileActposition = {
|
||||
|
|
@ -97,5 +96,5 @@ export type UpdateProfileActposition = {
|
|||
dateEnd?: Date | null;
|
||||
posNo?: string | null;
|
||||
position?: string | null;
|
||||
status?: string | null;
|
||||
status: boolean;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue