@tomei/product
Version:
NestJS package for product module
17 lines (16 loc) • 473 B
TypeScript
import { Model } from 'sequelize-typescript';
import { StockInventory } from './stock-inventory.entity';
export declare class StockPrice extends Model {
InventoryId: string;
Currency: string;
RetailPrice: number;
BasePrice: number;
StaffPrice: number;
LabourCharges: number;
PriceIndicator: string;
CreatedById: string;
CreatedAt: Date;
UpdatedById: string;
UpdatedAt: Date;
StockInventory: StockInventory;
}