fix: wrong field

This commit is contained in:
Methapon2001 2024-06-07 14:02:31 +07:00
parent 23f52b137d
commit c3f8673ac8
4 changed files with 15 additions and 5 deletions

View file

@ -61,7 +61,7 @@ export type CustomerBranchCreate = {
jobDescription: string;
saleEmployee: string;
payDate: Date;
wageDate: Date;
wageRate: number;
subDistrictId?: string | null;
districtId?: string | null;
@ -96,7 +96,7 @@ export type CustomerBranchUpdate = {
jobDescription?: string;
saleEmployee?: string;
payDate?: Date;
wageDate?: Date;
wageDate?: number;
subDistrictId?: string | null;
districtId?: string | null;

View file

@ -57,7 +57,7 @@ export type CustomerCreate = {
jobDescription: string;
saleEmployee: string;
payDate: Date;
wageDate: Date;
wageRate: number;
subDistrictId?: string | null;
districtId?: string | null;
@ -99,7 +99,7 @@ export type CustomerUpdate = {
jobDescription: string;
saleEmployee: string;
payDate: Date;
wageDate: Date;
wageRate: number;
subDistrictId?: string | null;
districtId?: string | null;