import { Schema } from 'mongoose'; import { IM3ApiStockLine } from '../models/m3-api-stock-line.model'; const m3ApiStockLineSchema = new Schema({ MLWHLO: { type: String }, MLSLTP: { type: String }, MLWHSL: { type: String }, MLITNO: { type: String }, MMITDS: { type: String }, MLCAMU: { type: String }, MMITCL: { type: String }, MLBANO: { type: String }, MMCFI3: { type: String }, V_QTYA: { type: String }, AGATVN: { type: String }, MMHDPR: { type: String }, V_EQCH: { type: String }, V_PRGP: { type: String }, V_NCOM: { type: String }, }); export { m3ApiStockLineSchema };