feat: เพิ่ม type ของ Product Group
This commit is contained in:
parent
40aebe30a1
commit
18bbe3ad17
1 changed files with 24 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue