chore: update create customer dto

This commit is contained in:
ghost2023
2026-05-28 13:42:45 +03:00
parent e84451ca60
commit 6457b692b8

View File

@@ -64,17 +64,29 @@ export interface ICustomer extends BaseEntity {
}
export interface CreateCustomerDto {
name: string;
userId: string;
firstName: string;
lastName: string;
email: string;
phone: string;
company?: string;
customerType?: CustomerType;
status?: CustomerStatus;
tinNumber?: string;
city?: string;
country?: string;
address?: string;
taxId?: string;
companyName: string;
companyEmail: string;
companyPhone: string;
companyLocation: string;
companyAddress: string;
contactPersonName: string;
contactPersonPhone: string;
tinNumber: string;
vatNumber: string;
fanNumber: string;
generalManagerName: string;
generalManagerEmail: string;
generalManagerPhone: string;
poaName?: string;
poaPhone?: string;
poaAddress?: string;
poaEmail?: string;
poaLocation?: string;
notes?: string;
}