@tomei/product
Version:
NestJS package for product module
25 lines (24 loc) • 640 B
TypeScript
import { Model } from 'sequelize-typescript';
import { StockMaterial } from './stock-material.entity';
export declare class StockMaterialInfo extends Model {
MaterialId: string;
Shape: string;
Pieces: number;
Carat: number;
Colour: string;
Clarity: string;
Grade: string;
Flourescence: string;
Description: string;
CertificateNo: string;
CertificateName: string;
Width: number;
Height: number;
Length: number;
Diameter: string;
CreatedById: string;
CreatedAt: Date;
UpdatedById: string;
UpdatedAt: Date;
StockMaterial: StockMaterial;
}