diff --git a/src/entities/CommandType.ts b/src/entities/CommandType.ts index f3fb87fe..2ec53177 100644 --- a/src/entities/CommandType.ts +++ b/src/entities/CommandType.ts @@ -125,6 +125,9 @@ export class CreateCommandType { @Column() isAttachment: boolean; + + @Column() + isSalary?: boolean | null; } export type UpdateCommandType = Partial; diff --git a/src/entities/ProfileSalary.ts b/src/entities/ProfileSalary.ts index 704065f3..ad7217bd 100644 --- a/src/entities/ProfileSalary.ts +++ b/src/entities/ProfileSalary.ts @@ -231,6 +231,7 @@ export class CreateProfileSalaryEmployee { export class UpdateProfileSalaryEmployee { date?: Date | null; amount?: Double | null; + amountSpecial?: Double | null; positionSalaryAmount?: Double | null; mouthSalaryAmount?: Double | null; posNo: string | null; @@ -247,6 +248,7 @@ export class UpdateProfileSalaryEmployee { export type UpdateProfileSalary = { date?: Date | null; amount?: Double | null; + amountSpecial?: Double | null; positionSalaryAmount?: Double | null; mouthSalaryAmount?: Double | null; posNo?: string | null;