diff --git a/src/controllers/05-quotation-controller.ts b/src/controllers/05-quotation-controller.ts index 9afe1f2..099bfee 100644 --- a/src/controllers/05-quotation-controller.ts +++ b/src/controllers/05-quotation-controller.ts @@ -71,10 +71,6 @@ type QuotationCreate = { workId?: string; productId: string; amount: number; - /** - * @maximum 1 - * @minimum 0 - */ discount?: number; workerIndex?: number[]; }[]; @@ -126,10 +122,6 @@ type QuotationUpdate = { workId?: string; productId: string; amount: number; - /** - * @maximum 1 - * @minimum 0 - */ discount?: number; workerIndex?: number[]; }[];