10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
export class CutItemDto {
|
|
productId: number;
|
|
description: string;
|
|
pacth: string;
|
|
stockId: number;
|
|
saleQuantity: number;
|
|
cutQuantity: number;
|
|
separedQuantity: number;
|
|
}
|