import { OrderCustomerTypeEnum } from '../enums/order-customer-type.enum'; import { IOrderCustomerAttr } from '../interfaces/order-customer-attr.interface'; import { Model } from 'sequelize-typescript'; export declare class OrderCustomerModel extends Model implements IOrderCustomerAttr { CustomerId: string; CRMRefNo: string; FullName: string; ContactNo: string; Email: string; IdNo: string; CustomerType: OrderCustomerTypeEnum; TaxIdentificationNo: string; ContactPersonName: string; ContactPersonContactNo: string; ContactPersonIdType: string; ContactPersonIdNo: string; CreatedById: string; CreatedAt: Date; UpdatedById: string; UpdatedAt: Date; }