260316:1524 Refactor to UUID
Build and Deploy / deploy (push) Successful in 3m25s

This commit is contained in:
admin
2026-03-16 15:24:26 +07:00
parent 3636b3c831
commit 4f7d9bb80c
3 changed files with 17 additions and 16 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
export interface CreateContractDto {
contractCode: string;
contractName: string;
projectId: number;
projectId: number | string;
description?: string;
startDate?: string;
endDate?: string;
@@ -11,7 +11,7 @@ export type UpdateContractDto = Partial<CreateContractDto>;
export interface SearchContractDto {
search?: string;
projectId?: number;
projectId?: number | string;
page?: number;
limit?: number;
}