import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; export interface RequestButcherProcessingCreateOrUpdate { date: string; operationCenter: string; code?: string; inputSKU: string; inputQuantityGradeA?: number; inputQuantityGradeB?: number; outputSKU: string; outputQuantity: number; usageDate: string; butcher?: string; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; }