fix: แก้ type ของ status

This commit is contained in:
Net 2024-06-11 15:02:58 +07:00
parent 42a4245299
commit 566798e35a

View file

@ -1,10 +1,12 @@
import { Status } from '../types';
export type ProductGroup = {
id: string;
code: string;
name: string;
detail: string;
remark: string;
status: string;
status: Status;
createdBy: string;
createdAt: string;
updateBy: string;
@ -15,6 +17,7 @@ export interface ProductGroupCreate {
remark: string;
detail: string;
name: string;
code: string;
}
export interface ProductGroupUpdate {