เงินพิเศษ

This commit is contained in:
Bright 2024-12-10 09:22:10 +07:00
parent 30c09a1ccb
commit da6c407678
2 changed files with 5 additions and 0 deletions

View file

@ -125,6 +125,9 @@ export class CreateCommandType {
@Column() @Column()
isAttachment: boolean; isAttachment: boolean;
@Column()
isSalary?: boolean | null;
} }
export type UpdateCommandType = Partial<CreateCommandType>; export type UpdateCommandType = Partial<CreateCommandType>;

View file

@ -231,6 +231,7 @@ export class CreateProfileSalaryEmployee {
export class UpdateProfileSalaryEmployee { export class UpdateProfileSalaryEmployee {
date?: Date | null; date?: Date | null;
amount?: Double | null; amount?: Double | null;
amountSpecial?: Double | null;
positionSalaryAmount?: Double | null; positionSalaryAmount?: Double | null;
mouthSalaryAmount?: Double | null; mouthSalaryAmount?: Double | null;
posNo: string | null; posNo: string | null;
@ -247,6 +248,7 @@ export class UpdateProfileSalaryEmployee {
export type UpdateProfileSalary = { export type UpdateProfileSalary = {
date?: Date | null; date?: Date | null;
amount?: Double | null; amount?: Double | null;
amountSpecial?: Double | null;
positionSalaryAmount?: Double | null; positionSalaryAmount?: Double | null;
mouthSalaryAmount?: Double | null; mouthSalaryAmount?: Double | null;
posNo?: string | null; posNo?: string | null;