@tomei/product
Version:
NestJS package for product module
11 lines (10 loc) • 332 B
TypeScript
import { Model } from 'sequelize-typescript';
import { StockProfile } from './stock-profile.entity';
export declare class StockSupplierPart extends Model {
SupplierPartId: string;
SupplierPartNo: string;
ProfileId: string;
Description: string;
RestockPeriodInDays: number;
Profile: StockProfile;
}