set payment method

This commit is contained in:
2025-11-23 10:03:44 +03:30
parent cc6614fe97
commit 4ea7c8d068
5 changed files with 95 additions and 2 deletions
@@ -16,6 +16,9 @@ export class RestaurantPaymentMethod extends BaseEntity {
@Property({ nullable: true })
merchantId?: string;
@Property({ type: 'decimal', precision: 10, scale: 2, default: 0 })
price: number = 0;
@Property({ type: 'boolean', default: true })
isActive: boolean = true;
}