comanda.ts
325 Bytes
export interface ComandaDetalle {
id: number;
idcomanda: number;
codsec: number;
codart: number;
cantidad: number;
idarticulo: number;
}
export interface Comanda {
id: number;
estado: number;
observacion: string;
fechainicioelaboracion: Date;
fechafinelaboracion: Date;
detalles: ComandaDetalle[];
}