diff --git a/src/entities/ProfileAbility.ts b/src/entities/ProfileAbility.ts index 886b3557..b661cd2b 100644 --- a/src/entities/ProfileAbility.ts +++ b/src/entities/ProfileAbility.ts @@ -90,7 +90,6 @@ export class CreateProfileAbility { } export type UpdateProfileAbility = { - profileId?: string | null; isActive?: boolean; remark?: string | null; detail?: string | null; diff --git a/src/entities/ProfileDuty.ts b/src/entities/ProfileDuty.ts index 44ebd987..fb031173 100644 --- a/src/entities/ProfileDuty.ts +++ b/src/entities/ProfileDuty.ts @@ -87,7 +87,6 @@ export class CreateProfileDuty { } export type UpdateProfileDuty = { - profileId?: string | null; isActive?: boolean; dateStart?: Date | null; dateEnd?: Date | null; diff --git a/src/entities/ProfileInsignia.ts b/src/entities/ProfileInsignia.ts index 7e77ad9a..7e60d6f1 100644 --- a/src/entities/ProfileInsignia.ts +++ b/src/entities/ProfileInsignia.ts @@ -153,7 +153,6 @@ export class CreateProfileInsignia { } export type UpdateProfileInsignia = { - profileId?: string | null; isActive?: boolean; year?: number; no?: string | null; diff --git a/src/entities/ProfileLeave.ts b/src/entities/ProfileLeave.ts index a3f1b668..2c448f35 100644 --- a/src/entities/ProfileLeave.ts +++ b/src/entities/ProfileLeave.ts @@ -312,7 +312,6 @@ export class CreateProfileLeave { } export type UpdateProfileLeave = { - profileId?: string | null; isActive?: boolean; restCount?: number | null; restDay?: number | null; diff --git a/src/entities/ProfileNopaid.ts b/src/entities/ProfileNopaid.ts index 97cd89d8..9a429e89 100644 --- a/src/entities/ProfileNopaid.ts +++ b/src/entities/ProfileNopaid.ts @@ -78,7 +78,6 @@ export class CreateProfileNopaid { } export type UpdateProfileNopaid = { - profileId?: string | null; isActive?: boolean; date?: Date | null; detail?: string | null; diff --git a/src/entities/ProfileOther.ts b/src/entities/ProfileOther.ts index 010849cc..61cc5804 100644 --- a/src/entities/ProfileOther.ts +++ b/src/entities/ProfileOther.ts @@ -51,7 +51,6 @@ export class CreateProfileOther { } export type UpdateProfileOther = { - profileId?: string | null; isActive?: boolean; detail?: string | null; date?: Date | null; diff --git a/src/entities/ProfileTraining.ts b/src/entities/ProfileTraining.ts index 97571df8..f0d5b66f 100644 --- a/src/entities/ProfileTraining.ts +++ b/src/entities/ProfileTraining.ts @@ -133,7 +133,6 @@ export class CreateProfileTraining { } export type UpdateProfileTraining = { - profileId?: string | null; isActive?: boolean; startDate?: Date | null; endDate?: Date | null;