feat: เพิ่ม type ของ Product Group

This commit is contained in:
Net 2024-06-11 14:09:59 +07:00
parent 40aebe30a1
commit 18bbe3ad17

View file

@ -0,0 +1,24 @@
export type ProductGroup = {
id: string;
code: string;
name: string;
detail: string;
remark: string;
status: string;
createdBy: string;
createdAt: string;
updateBy: string;
updatedAt: string;
};
export interface ProductGroupCreate {
remark: string;
detail: string;
name: string;
}
export interface ProductGroupUpdate {
remark: string;
detail: string;
name: string;
}