ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
27 lines (26 loc) • 1.04 kB
TypeScript
import { HyperShopOrderTypeEnum } from '../../enums/base/hyperShopOrderTypeEnum';
import { HyperShopPaymentTypeEnum } from '../../enums/base/hyperShopPaymentTypeEnum';
import { BaseModuleEntity } from '../base/baseModuleEntity';
import { HyperShopOrderContentModel } from './hyperShopOrderContentModel';
export declare class HyperShopOrderModel extends BaseModuleEntity<number> {
paymentType: HyperShopPaymentTypeEnum;
orderType: HyperShopOrderTypeEnum;
systemTransactionId: number;
systemPaymentIsSuccess: number;
systemMicroServiceOrderId: string;
systemMicroServiceAccept: boolean;
systemMicroServiceId: string;
systemMicroServiceIsSuccess: boolean;
systemMicroServiceErrorMessage: string;
name: string;
family: string;
mobile: string;
geoLocationLatitude: string;
geoLocationLongitude: string;
address: string;
amount: number;
amountPure: number;
feeTransport: number;
feeTax: number;
products: HyperShopOrderContentModel[];
}