feat: add fields

This commit is contained in:
Methapon2001 2024-06-17 17:58:30 +07:00
parent 1f54d5d1df
commit 077edee039
3 changed files with 15 additions and 0 deletions

View file

@ -27,6 +27,8 @@ const MINIO_BUCKET = process.env.MINIO_BUCKET;
export type CustomerCreate = {
status?: Status;
personName: string;
personNameEN?: string;
customerType: CustomerType;
customerName: string;
customerNameEN: string;
@ -67,6 +69,8 @@ export type CustomerCreate = {
export type CustomerUpdate = {
status?: "ACTIVE" | "INACTIVE";
personName: string;
personNameEN?: string;
customerType?: CustomerType;
customerName?: string;
customerNameEN?: string;