This repository was archived by the owner on Jul 14, 2024. It is now read-only.
generated from GabrielGuedess/NestJs-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add many update and delete many in entities
- Loading branch information
1 parent
d977f6b
commit 99da6cb
Showing
62 changed files
with
2,116 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { type UpdateNaturalPersonDTO } from '../NaturalPersonDto/UpdateNaturalPersonDto'; | ||
|
||
export abstract class UpdateManyOwnDriversDto { | ||
id: string; | ||
cnh?: string; | ||
cnh_category?: string; | ||
cnh_expiration?: Date; | ||
company_vehicle?: boolean; | ||
course_mopp?: boolean; | ||
NaturalPerson?: UpdateNaturalPersonDTO; | ||
updated_by?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { type UpdateLegalPersonDTO } from '../LegalPerson/UpdateLegalPersonDto'; | ||
import { type UpdateNaturalPersonDTO } from '../NaturalPersonDto/UpdateNaturalPersonDto'; | ||
|
||
export abstract class UpdateManyRecipientsDto { | ||
id: string; | ||
NaturalPerson?: UpdateNaturalPersonDTO; | ||
LegalPerson?: UpdateLegalPersonDTO; | ||
updated_by?: string; | ||
legal_person_id?: string; | ||
natural_person_id?: string; | ||
created_by?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { type UpdateLegalPersonDTO } from '../LegalPerson/UpdateLegalPersonDto'; | ||
import { type UpdateNaturalPersonDTO } from '../NaturalPersonDto/UpdateNaturalPersonDto'; | ||
|
||
export abstract class UpdateManySendersDto { | ||
id: string; | ||
NaturalPerson?: UpdateNaturalPersonDTO; | ||
LegalPerson?: UpdateLegalPersonDTO; | ||
updated_by?: string; | ||
legal_person_id?: string; | ||
natural_person_id?: string; | ||
created_by?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.