UNPKG

@tomei/product

Version:

NestJS package for product module

17 lines (16 loc) 523 B
import { Model } from 'sequelize-typescript'; import { StockInventory } from './stock-inventory.entity'; import { StockMaterialInfo } from './stock-material-info.entity'; export declare class StockMaterial extends Model { MaterialId: string; InventoryId: string; Material: string; Type: string; IsMainYN: string; UpdatedById: string; UpdatedAt: Date; CreatedById: string; CreatedAt: Date; StockInventory: StockInventory; StockMaterialInfo: StockMaterialInfo[]; }