import { DomainObject } from "./domain-object"; import { BeaconType, InventTransType } from "./all.enum"; import { Product } from "./product"; import { InventLocation } from "./invent-location"; import { WMSLocation } from "./wms-location"; import { WMSPallet } from "./wms-pallet"; import { Batch } from "./batch"; import { ServiceObject } from "./service-object"; import { InventContainer } from "./invent-container"; import { Project } from "./project"; import { ProductSerialNo } from "./product-serialno"; import { InventObject } from "./invent-object"; import { ConfigDimension } from "./config-dimension"; import { SizeDimension } from "./size-dimension"; import { ColorDimension } from "./color-dimension"; import { Beacon } from "./beacon"; import { Production } from "./production"; export declare class InventTrans extends DomainObject { TransactionId?: string | undefined; TransactionNo?: number | undefined; Qty?: number | undefined; CostPrice?: number | undefined; SalesPrice?: number | undefined; Time?: Date | undefined; Text?: string | undefined; EntityId?: string | undefined; EntityType?: string | undefined; TransactionType?: InventTransType | undefined; ProductId?: string | undefined; Product?: Product | undefined; PRODUCT_PRODUCTID?: string | undefined; PRODUCT_SKU?: string | undefined; PRODUCT_NAME?: string | undefined; ColorId?: string | undefined; Color?: ColorDimension | undefined; COLOR_CODE?: string | undefined; COLOR_NAME?: string | undefined; SizeId?: string | undefined; Size?: SizeDimension | undefined; SIZE_CODE?: string | undefined; SIZE_NAME?: string | undefined; ConfigId?: string | undefined; Config?: ConfigDimension | undefined; CONFIG_CODE?: string | undefined; CONFIG_NAME?: string | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; INVENTLOCATION_INVENTLOCATIONID?: string | undefined; INVENTLOCATION_NAME?: string | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; WMSLOCATION_WMSLOCATIONID?: string | undefined; WMSLOCATION_NAME?: string | undefined; WMSPalletId?: string | undefined; WMSPallet?: WMSPallet | undefined; WMSPALLET_WMSPALLETID?: string | undefined; WMSPALLET_NAME?: string | undefined; BatchId?: string | undefined; Batch?: Batch | undefined; BATCH_BATCHID?: string | undefined; BATCH_NAME?: string | undefined; ServiceObjectId?: string | undefined; ServiceObject?: ServiceObject | undefined; SERVICEOBJECT_SERVICEOBJECTID?: string | undefined; SERVICEOBJECT_NAME?: string | undefined; ProjectId?: string | undefined; Project?: Project | undefined; PROJECT_PROJECTID?: string | undefined; PROJECT_NAME?: string | undefined; ContainerId?: string | undefined; Container?: InventContainer | undefined; CONTAINER_CONTAINERID?: string | undefined; CONTAINER_NAME?: string | undefined; ProductSerialNoId?: string | undefined; ProductSerialNo?: ProductSerialNo | undefined; PRODUCTSERIALNO_SERIALNO?: string | undefined; PRODUCTSERIALNO_NAME?: string | undefined; InventObjectId?: string | undefined; InventObject?: InventObject | undefined; INVENTOBJECT_OBJECTID?: string | undefined; INVENTOBJECT_NAME?: string | undefined; BeaconId?: string | undefined; Beacon?: Beacon | undefined; BEACON_UUID?: string | undefined; BEACON_TYPE?: BeaconType | undefined; ProductionId?: string | undefined; Production?: Production | undefined; PRODUCTION_PRODUCTIONID?: string | undefined; PRODUCTION_NAME?: BeaconType | undefined; } //# sourceMappingURL=invent-trans.d.ts.map