This commit is contained in:
mahyargdz
2025-09-14 15:15:03 +03:30
commit be82059172
534 changed files with 51310 additions and 0 deletions
@@ -0,0 +1,14 @@
import { Types } from "mongoose";
import { OrderItemRefEnum, ReasonRefEnum } from "../fine.model";
export interface IFine {
product: Types.ObjectId;
seller: Types.ObjectId;
orderItem: Types.ObjectId;
orderItemRef: OrderItemRefEnum;
fine_rule: Types.ObjectId;
reason: Types.ObjectId;
reasonRef: ReasonRefEnum;
fine_amount: number;
}