fix: ลบ isActive
This commit is contained in:
parent
c13ca10a3e
commit
23f8382928
18 changed files with 36 additions and 165 deletions
|
|
@ -20,12 +20,6 @@ export class ProfileDiscipline extends EntityBase {
|
|||
})
|
||||
profileId: string;
|
||||
|
||||
@Column({
|
||||
comment: "สถานะการใช้งาน",
|
||||
default: false,
|
||||
})
|
||||
isActive: boolean;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ระดับความผิด",
|
||||
|
|
@ -80,7 +74,7 @@ export class ProfileDiscipline extends EntityBase {
|
|||
export class CreateProfileDiscipline {
|
||||
date: Date | null;
|
||||
profileId: string;
|
||||
isActive: boolean | null;
|
||||
|
||||
level: string | null;
|
||||
detail: string | null;
|
||||
refCommandDate: Date | null;
|
||||
|
|
@ -90,7 +84,7 @@ export class CreateProfileDiscipline {
|
|||
|
||||
export type UpdateProfileDiscipline = {
|
||||
date?: Date | null;
|
||||
isActive?: boolean | null;
|
||||
|
||||
level?: string | null;
|
||||
detail?: string | null;
|
||||
refCommandDate?: Date | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue