13 lines
165 B
TypeScript
13 lines
165 B
TypeScript
export interface Uom {
|
|
code: string
|
|
name: string
|
|
erp_id: string
|
|
}
|
|
|
|
export function genUom(): Uom {
|
|
return {
|
|
code: '',
|
|
name: '',
|
|
erp_id: '',
|
|
}
|
|
} |