edit type status profile

This commit is contained in:
kittapath 2025-01-27 10:23:28 +07:00
parent c60beef7e3
commit 9bf7ddf267
4 changed files with 39 additions and 15 deletions

View file

@ -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;
};