import { Model } from 'sequelize-typescript'; import { OrderModel } from './order.entity'; import { ServiceItemModel } from './service-item.entity'; export declare class OrderItemModel extends Model { ItemId: string; OrderNo: string; ItemType: string; Currency: string; SalePrice: number; RetailPrice: number; TaxAmount: number; TaxCode: string; TaxRate: number; SerialNo: string; BatchNo: string; Description: string; Name: string; Quantity: number; Order: OrderModel; ServiceItem: ServiceItemModel; }