feat(material): create model interface of material

This commit is contained in:
riefive
2025-09-18 13:19:15 +07:00
parent 9ce5038e62
commit 117e72fdce
3 changed files with 24 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
export interface EquipmentMaterial {
code: string;
name: string;
uom_code: string;
stock: number;
}